Chrome扩展manifest V3变化、升级迁移指南_chrome_ZK645945-华为云开发者联盟 (csdn.net)文章来源:https://www.toymoban.com/news/detail-729897.html
1.background
//V2
"background": "background.js"
//V3
"background": {
"service_worker": "background.js"
}
2.executeScript
//V2
chrome.tabs.executeScript({
file: 'script.js'
});
//V3
"permissions": ["scripting"]
async function getCurrentTab() {/* ... */}
let tab = await getCurrentTab();
chrome.scripting.executeScript({
target: { tabId: tab.id },
files: [ 'script.js' ]
});
3.action
browser_action 改
为 action。文章来源地址https://www.toymoban.com/news/detail-729897.html
到了这里,关于Chrome扩展V2到V3的变化的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!