Manifest V3 不支持动态js代码
Opened this issue · 2 comments
js小书签,需要用到此功能
V2的 API
为 chrome.tabs.executeScript
,支持
V3的 API
为 chrome.scripting.executeScript()
,明显不支持
Manifest V3 migration checklist 里说到:
Are you executing remote code or arbitrary strings?
You can no longer execute external logic using chrome.scripting.executeScript({code: '...'}), eval(), and new Function().Move all external code (JS, Wasm, CSS) into your extension bundle.
Update script and style references to load resources from the extension bundle.
Use chrome.runtime.getURL() to build resource URLs at runtime.
另外,Tampermonkey 的 issue #644 中也说明了还不支持
userScripts API
https://developer.chrome.com/docs/extensions/reference/api/userScripts?hl=zh-cn
要求:
- Chrome 120 及更高版本
- 用户扩展程序的开发者模式
目前仍不支持js小书签 js代码不能立即运行
https://github.com/w3c/webextensions/blob/main/proposals/user-scripts-execute-api.md