mirror of
https://github.com/facebook/react.git
synced 2026-02-27 03:07:57 +00:00
This is a patch version to fix some bugs in a previous internal release. I am expecting this one also to be internal-only, need to make sure that extension is stable in Chrome. Some changes and improvements are expected for Firefox, though, before going public. * refactor[devtools/extension]: handle ports disconnection, instead of frequent reconnection ([hoxyq](https://github.com/hoxyq) in [#27336](https://github.com/facebook/react/pull/27336)) * refactor[devtools/extension]: migrate from using setInterval for polling if react is loaded ([hoxyq](https://github.com/hoxyq) in [#27323](https://github.com/facebook/react/pull/27323)) * fix[devtools/extension]: fixed duplicating panels in firefox ([hoxyq](https://github.com/hoxyq) in [#27320](https://github.com/facebook/react/pull/27320))
60 lines
1.3 KiB
JSON
60 lines
1.3 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "React Developer Tools",
|
|
"description": "Adds React debugging tools to the Firefox Developer Tools.",
|
|
"version": "4.28.3",
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "@react-devtools",
|
|
"strict_min_version": "102.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/*.js"
|
|
],
|
|
"background": {
|
|
"scripts": [
|
|
"build/background.js"
|
|
]
|
|
},
|
|
"permissions": [
|
|
"file:///*",
|
|
"http://*/*",
|
|
"https://*/*",
|
|
"clipboardWrite",
|
|
"scripting",
|
|
"devtools"
|
|
],
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"<all_urls>"
|
|
],
|
|
"js": [
|
|
"build/prepareInjection.js"
|
|
],
|
|
"run_at": "document_start"
|
|
}
|
|
]
|
|
}
|