Chrome-extension-vue-template
Chrome-extension-vue-template copied to clipboard
使用vue-cli3构建Chrome插件模板
Results
2
Chrome-extension-vue-template issues
Sort by
recently updated
recently updated
newest added
目前关于manifest。json的配置,content_security_policy这项只允许self或none,请问怎么克服呢? https://doc.yilijishu.info/chrome/mv3-migration.html 在您的代码中,content_security_policy:"script-src 'self' 'unsafe-eval'; object-src 'self'" 现在v3要求改为: "content_security_policy":{ "extension_pages":"script-src 'self'; object-src 'self'" }, 若改成这样,插件页面就会出错,什么都不显示了