-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
72 lines (72 loc) · 1.51 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "Enhanced Vue.js devtools",
"version": "1.3.0",
"version_name": "1.3.0",
"description": "This add-on is built on the top of Vue.js devtools 5.3.3. It Adds a panel for checking duplicate keys",
"manifest_version": 3,
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"web_accessible_resources": [
{
"resources": [
"devtools.html",
"devtools-background.html",
"build/proxy.js",
"build/backend.js",
"build/hook-exec.js",
"build/detector-exec.js"
],
"matches": [
"<all_urls>"
]
}
],
"devtools_page": "devtools-background.html",
"background": {
"service_worker": "build/service-worker.js"
},
"permissions": [
"storage",
"scripting"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"build/hook.js"
],
"run_at": "document_start"
},
{
"matches": [
"<all_urls>"
],
"js": [
"build/detector.js"
],
"run_at": "document_idle"
}
],
"action": {
"default_icon": {
"16": "icons/16-gray.png",
"48": "icons/48-gray.png",
"128": "icons/128-gray.png"
},
"default_title": "Enhanced Vue.js devtools",
"default_popup": "popups/not-found.html"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"host_permissions": [
"http://*/*",
"https://*/*",
"file:///*"
]
}