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