mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-04-23 18:38:40 +00:00
64 lines
1.2 KiB
JSON
64 lines
1.2 KiB
JSON
|
{
|
||
|
"manifest_version": 2,
|
||
|
"version": "1.1.0",
|
||
|
"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"
|
||
|
},
|
||
|
"devtools_page": "devtools_panel.html",
|
||
|
"background": {
|
||
|
"scripts": [
|
||
|
"js/background.js"
|
||
|
],
|
||
|
"persistent": false
|
||
|
},
|
||
|
"content_scripts": [
|
||
|
{
|
||
|
"matches": [
|
||
|
"<all_urls>"
|
||
|
],
|
||
|
"js": [
|
||
|
"js/content.js"
|
||
|
],
|
||
|
"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'"
|
||
|
}
|