如何允许所有域/网站从其网页访问我的Chrome扩展程序

时间:2017-12-14 13:36:03

标签: javascript google-chrome google-chrome-extension google-chrome-devtools opentok

我在其中一个网络应用程序中使用OpenTok API来启用webRTC。在使用屏幕共享功能时,我必须将screen share扩展名上传到我的Chrome网上商店。

manifest.json我提供了以下代码,以便访问与我的扩展程序进行通信的网站。

"externally_connectable": {
    "matches": [
      "https://websiteurl1/*",
      "https://websiteurl2/*",
      "https://localhost/*"
    ],
     "accepts_tls_channel_id": false
},

如何让所有域名访问我的Chrome扩展程序。

1 个答案:

答案 0 :(得分:1)

manifest.json extenally_connectable

The documentation说:

  

匹配(字符串数组) - 可选

     

模式不能包含通配符域或子域(有效)   顶级域名;

似乎不可能。