-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmanifest.json
More file actions
executable file
·33 lines (33 loc) · 945 Bytes
/
manifest.json
File metadata and controls
executable file
·33 lines (33 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"manifest_version": 3,
"name": "Web Component DevTools",
"description": "description in manifest.json",
"options_ui": {
"page": "src/pages/options/index.html"
},
"action": {
"default_popup": "src/pages/popup/index.html",
"default_icon": {
"32": "public/dev-icon-32.png"
}
},
"icons": {
"128": "public/dev-icon-128.png"
},
"permissions": ["activeTab", "scripting", "contextMenus"],
"host_permissions": ["<all_urls>"],
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*", "<all_urls>"],
"js": ["src/pages/content/index.ts"],
"css": ["contentStyle.css"]
}
],
"devtools_page": "src/pages/devtools/index.html",
"web_accessible_resources": [
{
"resources": ["contentStyle.css", "icon-128.png", "icon-32.png"],
"matches": []
}
]
}