-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathchrome_dev.json
121 lines (121 loc) · 3.91 KB
/
chrome_dev.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
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
113
114
115
116
117
118
119
120
121
{
"name": "__MSG_extension_name_dev__",
"author": "indie.io",
"version": "1.7.9910712",
"description": "__MSG_extension_desc__",
"default_locale": "en",
"permissions": [
"storage",
"webNavigation"
],
"host_permissions": [
"*://*.gamepedia.com/*",
"*://*.fandom.com/*"
],
"background": {
"service_worker": "built/background.js"
},
"action": {
"default_icon": "icons/128_dev.png",
"default_title": "__MSG_extension_name_dev__",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https://www.google.at/*",
"https://www.google.be/*",
"https://www.google.ch/*",
"https://www.google.cl/*",
"https://www.google.ca/*",
"https://www.google.co.in/*",
"https://www.google.co.jp/*",
"https://www.google.co.kr/*",
"https://www.google.com/*",
"https://www.google.com.ar/*",
"https://www.google.com.au/*",
"https://www.google.com.br/*",
"https://www.google.com.co/*",
"https://www.google.com.gr/*",
"https://www.google.com.mx/*",
"https://www.google.com.pk/*",
"https://www.google.com.tr/*",
"https://www.google.com.tw/*",
"https://www.google.co.uk/*",
"https://www.google.de/*",
"https://www.google.dk/*",
"https://www.google.es/*",
"https://www.google.fr/*",
"https://www.google.ie/*",
"https://www.google.it/*",
"https://www.google.nl/*",
"https://www.google.pl/*",
"https://www.google.pt/*"
],
"js": [
"built/google.js"
],
"run_at": "document_end"
},
{
"matches": [
"https://duckduckgo.com/*"
],
"js": [
"built/ddg.js"
],
"run_at": "document_end"
},
{
"matches": [
"https://*.fandom.com/*"
],
"js": [
"built/fandom.js"
],
"run_at": "document_end"
}
],
"icons": {
"128": "icons/128_dev.png"
},
"web_accessible_resources": [
{
"resources": [
"/icons/redirectBadge.svg"
],
"matches": [
"https://www.google.at/*",
"https://www.google.be/*",
"https://www.google.ch/*",
"https://www.google.cl/*",
"https://www.google.ca/*",
"https://www.google.co.in/*",
"https://www.google.co.jp/*",
"https://www.google.co.kr/*",
"https://www.google.com/*",
"https://www.google.com.ar/*",
"https://www.google.com.au/*",
"https://www.google.com.br/*",
"https://www.google.com.co/*",
"https://www.google.com.gr/*",
"https://www.google.com.mx/*",
"https://www.google.com.pk/*",
"https://www.google.com.tr/*",
"https://www.google.com.tw/*",
"https://www.google.co.uk/*",
"https://www.google.de/*",
"https://www.google.dk/*",
"https://www.google.es/*",
"https://www.google.fr/*",
"https://www.google.ie/*",
"https://www.google.it/*",
"https://www.google.nl/*",
"https://www.google.pl/*",
"https://www.google.pt/*",
"https://duckduckgo.com/*"
]
}
],
"manifest_version": 3
}