2021-04-03 15:52:08 +08:00
|
|
|
{
|
|
|
|
"manifest_version": 2,
|
2021-11-12 21:20:57 +08:00
|
|
|
"version": "2.0.0",
|
2021-04-03 15:52:08 +08:00
|
|
|
"name": "Cocos Creator Inspector",
|
|
|
|
"description": "Cocos Creator Inspector",
|
|
|
|
"permissions": [
|
|
|
|
"activeTab",
|
|
|
|
"<all_urls>",
|
|
|
|
"*://*/*",
|
|
|
|
"tabs",
|
|
|
|
"http://*/*",
|
|
|
|
"https://*/*",
|
|
|
|
"audio",
|
|
|
|
"system.cpu",
|
|
|
|
"clipboardRead",
|
|
|
|
"clipboardWrite",
|
|
|
|
"system.memory",
|
|
|
|
"processes",
|
|
|
|
"tabs",
|
|
|
|
"storage",
|
|
|
|
"nativeMessaging",
|
|
|
|
"contextMenus",
|
|
|
|
"notifications"
|
|
|
|
],
|
|
|
|
"icons": {
|
|
|
|
"48": "icons/48.png"
|
|
|
|
},
|
2021-04-03 16:47:16 +08:00
|
|
|
"devtools_page": "devtools.html",
|
2021-04-03 15:52:08 +08:00
|
|
|
"background": {
|
|
|
|
"scripts": [
|
|
|
|
"js/background.js"
|
|
|
|
],
|
|
|
|
"persistent": false
|
|
|
|
},
|
|
|
|
"content_scripts": [
|
|
|
|
{
|
|
|
|
"matches": [
|
|
|
|
"<all_urls>"
|
|
|
|
],
|
|
|
|
"js": [
|
2021-04-26 22:27:47 +08:00
|
|
|
"js/content.js"
|
2021-04-03 15:52:08 +08:00
|
|
|
],
|
|
|
|
"run_at": "document_end",
|
|
|
|
"all_frames": true
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"options_ui": {
|
|
|
|
"page": "options.html",
|
|
|
|
"browser_style": true
|
|
|
|
},
|
|
|
|
"browser_action": {
|
|
|
|
"default_popup": "popup.html",
|
|
|
|
"default_title": "CC-Inspector",
|
|
|
|
"default_icon": {
|
|
|
|
"48": "icons/48.png"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"web_accessible_resources": [
|
|
|
|
"*/*",
|
|
|
|
"*"
|
|
|
|
],
|
|
|
|
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
|
|
|
|
}
|