且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Google Chrome扩展程序:captureVisibleTab问题

更新时间:2023-12-05 20:00:52

I guess your code is taken from the example given on the Chrome Extension Website and yes, it's buggy.

Change the permission attribute inside the manifest.json to this:

"permissions": [
    "tabs"
    ,"<all_urls>"
]

Cheers, David

相关阅读

推荐文章