-
-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathchrome-manifest-extra.json
More file actions
112 lines (112 loc) · 3.03 KB
/
chrome-manifest-extra.json
File metadata and controls
112 lines (112 loc) · 3.03 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"permissions": [
"scripting"
],
"content_scripts": [
{
"world": "MAIN",
"js": [
"./js/document.js"
],
"matches": [
"https://*.youtube.com/*",
"https://www.youtube-nocookie.com/embed/*"
],
"all_frames": true,
"run_at": "document_start"
},
{
"world": "ISOLATED",
"js": [
"./js/paymentInject.js"
],
"matches": [
"https://dearrow.ajay.app/*"
],
"all_frames": false,
"run_at": "document_start"
}
],
"web_accessible_resources": [{
"resources": [
"icons/refresh.svg",
"icons/logo.svg",
"js/document.js",
"js/options.js",
"js/popup.js",
"popup.css",
"shared.css",
"help.html",
"help.css",
"icons/logo-16.png",
"icons/logo-32.png",
"icons/logo-64.png",
"icons/logo-128.png",
"icons/logo-256.png",
"icons/logo-2r.svg",
"icons/logo-casual.svg",
"icons/close.png",
"icons/add.svg",
"icons/remove.svg"
],
"matches": ["<all_urls>"]
}],
"host_permissions": [
"https://sponsor.ajay.app/*",
"https://dearrow-thumb.ajay.app/*",
"https://dearrow.ajay.app/*",
"https://*.youtube.com/*",
"https://www.youtube-nocookie.com/embed/*"
],
"action": {
"default_title": "DeArrow",
"default_popup": "popup.html",
"default_icon": {
"16": "icons/logo-16.png",
"32": "icons/logo-32.png",
"64": "icons/logo-64.png",
"128": "icons/logo-128.png"
},
"theme_icons": [
{
"light": "icons/logo-16.png",
"dark": "icons/logo-16.png",
"size": 16
},
{
"light": "icons/logo-32.png",
"dark": "icons/logo-32.png",
"size": 32
},
{
"light": "icons/logo-64.png",
"dark": "icons/logo-64.png",
"size": 64
},
{
"light": "icons/logo-128.png",
"dark": "icons/logo-128.png",
"size": 128
},
{
"light": "icons/logo-256.png",
"dark": "icons/logo-256.png",
"size": 256
},
{
"light": "icons/logo-512.png",
"dark": "icons/logo-512.png",
"size": 512
},
{
"light": "icons/logo-1024.png",
"dark": "icons/logo-1024.png",
"size": 1024
}
]
},
"background": {
"service_worker": "./js/background.js"
},
"manifest_version": 3
}