| 1 | { |
| 2 | "manifest_version": 3, |
| 3 | "name": "React Developer Tools", |
| 4 | "description": "Adds React debugging tools to the Firefox Developer Tools.", |
| 5 | "version": "7.0.1", |
| 6 | "browser_specific_settings": { |
| 7 | "gecko": { |
| 8 | "id": "@react-devtools", |
| 9 | "strict_min_version": "128.0" |
| 10 | } |
| 11 | }, |
| 12 | "icons": { |
| 13 | "16": "icons/16-production.png", |
| 14 | "32": "icons/32-production.png", |
| 15 | "48": "icons/48-production.png", |
| 16 | "128": "icons/128-production.png" |
| 17 | }, |
| 18 | "action": { |
| 19 | "default_icon": { |
| 20 | "16": "icons/16-disabled.png", |
| 21 | "32": "icons/32-disabled.png", |
| 22 | "48": "icons/48-disabled.png", |
| 23 | "128": "icons/128-disabled.png" |
| 24 | }, |
| 25 | "default_popup": "popups/disabled.html" |
| 26 | }, |
| 27 | "devtools_page": "main.html", |
| 28 | "content_security_policy": { |
| 29 | "extension_pages": "script-src 'self'; object-src 'self'" |
| 30 | }, |
| 31 | "web_accessible_resources": [ |
| 32 | { |
| 33 | "resources": [ |
| 34 | "main.html", |
| 35 | "panel.html", |
| 36 | "build/*.js", |
| 37 | "build/*.js.map" |
| 38 | ], |
| 39 | "matches": [ |
| 40 | "<all_urls>" |
| 41 | ], |
| 42 | "extension_ids": [] |
| 43 | } |
| 44 | ], |
| 45 | "background": { |
| 46 | "scripts": [ |
| 47 | "build/background.js" |
| 48 | ] |
| 49 | }, |
| 50 | "permissions": [ |
| 51 | "scripting", |
| 52 | "storage", |
| 53 | "tabs", |
| 54 | "clipboardWrite" |
| 55 | ], |
| 56 | "host_permissions": [ |
| 57 | "<all_urls>" |
| 58 | ], |
| 59 | "content_scripts": [ |
| 60 | { |
| 61 | "matches": [ |
| 62 | "<all_urls>" |
| 63 | ], |
| 64 | "js": [ |
| 65 | "build/prepareInjection.js" |
| 66 | ], |
| 67 | "run_at": "document_start" |
| 68 | } |
| 69 | ] |
| 70 | } |