1

我正在开发一个 chrome 插件,它通过“chrome.tabs.captureVisibleTab”使用屏幕捕获功能,但它在 https 页面上失败。我请求了安全页面的许可:

 permissions:[
    "tabs", "http://*/*", "https://*/*"
 ],

这甚至可以在安全页面上实现吗?

这是我在示例 URL 中看到的错误:

 Error during tabs.captureVisibleTab: Cannot access contents of url "https://www.host.com/test". Extension manifest must request permission to access this host. 
4

1 回答 1

0

我想你想用<all_urls>

看到这个:http ://code.google.com/chrome/extensions/match_patterns.html

T。

于 2012-07-02T20:41:11.823 回答