-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
48 lines (48 loc) · 1.39 KB
/
manifest.json
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"manifest_version": 3,
"name": "Web Component DevTools",
"version": "0.2.2",
"minimum_chrome_version": "88.0",
"description": "Developer tooling for Web Components and Web Component Libraries",
"author": "Matsuuu <[email protected]>",
"devtools_page": "wc-devtools-init.html",
"background": {
"service_worker": "background-worker.js",
"type": "module"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content_script.js"],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"message-types.js",
"connection-channels.js",
"content-messaging.js",
"nydus.js",
"crawler-constants.js",
"analyzer.js",
"crawler-inject.js",
"spotlight-border.js"
],
"matches": ["<all_urls>"],
"use_dynamic_urls": true
}
],
"permissions": ["tabs", "contextMenus", "scripting"],
"host_permissions": [
"<all_urls>"
],
"content_security_policy": {
"extension_pages": "script-src 'wasm-unsafe-eval'; object-src 'self';script-src-elem 'self';"
},
"icons": {
"16": "logo-16.png",
"48": "logo-48.png",
"128": "logo-128.png"
}
}