mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Resolves #21855 Ended up using workerize in order to setup the worker once it allows easy imports (for babel's parse function) and exports.
58 lines
1.3 KiB
JSON
58 lines
1.3 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "React Developer Tools",
|
|
"description": "Adds React debugging tools to the Firefox Developer Tools.",
|
|
"version": "4.14.0",
|
|
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "@react-devtools",
|
|
"strict_min_version": "55.0"
|
|
}
|
|
},
|
|
|
|
"icons": {
|
|
"16": "icons/16-production.png",
|
|
"32": "icons/32-production.png",
|
|
"48": "icons/48-production.png",
|
|
"128": "icons/128-production.png"
|
|
},
|
|
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"16": "icons/16-disabled.png",
|
|
"32": "icons/32-disabled.png",
|
|
"48": "icons/48-disabled.png",
|
|
"128": "icons/128-disabled.png"
|
|
},
|
|
|
|
"default_popup": "popups/disabled.html",
|
|
"browser_style": true
|
|
},
|
|
|
|
"devtools_page": "main.html",
|
|
|
|
"content_security_policy": "script-src 'self' 'unsafe-eval' blob:; object-src 'self'",
|
|
"web_accessible_resources": [
|
|
"main.html",
|
|
"panel.html",
|
|
"build/react_devtools_backend.js",
|
|
"build/renderer.js",
|
|
"mappings.wasm"
|
|
],
|
|
|
|
"background": {
|
|
"scripts": ["build/background.js"]
|
|
},
|
|
|
|
"permissions": ["file:///*", "http://*/*", "https://*/*", "clipboardWrite"],
|
|
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["build/injectGlobalHook.js"],
|
|
"run_at": "document_start"
|
|
}
|
|
]
|
|
}
|