-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
59 lines (57 loc) · 1.47 KB
/
Copy pathmanifest.json
File metadata and controls
59 lines (57 loc) · 1.47 KB
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
{
"manifest_version": 3,
"name": "TagDragon",
"version": "1.7.0",
"description": "The dragon that sees every tag. Captures and decodes network requests from analytics, tracking, and marketing tags.",
"homepage_url": "https://www.tagdragon.net",
"action": {
"default_popup": "public/popup.html",
"default_icon": {
"16": "public/icons/icon16.png",
"32": "public/icons/icon32.png",
"48": "public/icons/icon48.png",
"128": "public/icons/icon128.png",
"192": "public/icons/icon192.png"
},
"default_title": "TagDragon"
},
"devtools_page": "public/devtools.html",
"background": {
"service_worker": "dist/background.js"
},
"permissions": [
"webRequest",
"storage",
"declarativeNetRequest",
"cookies",
"scripting"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["dist/data-layer-bridge.js"],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": ["dist/data-layer-main.js"],
"matches": ["<all_urls>"]
}
],
"minimum_chrome_version": "102",
"host_permissions": [
"<all_urls>"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'none';"
},
"icons": {
"16": "public/icons/icon16.png",
"32": "public/icons/icon32.png",
"48": "public/icons/icon48.png",
"96": "public/icons/icon96.png",
"128": "public/icons/icon128.png",
"192": "public/icons/icon192.png"
}
}