forked from wiki-gg-oss/redirect-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest_firefox.json
80 lines (80 loc) · 2.45 KB
/
manifest_firefox.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
{
"name": "Redirect to wiki.gg",
"author": "alex4401",
"version": "1.5.4",
"description": "Redirects visits from unsupported Fandom wikis that moved to wiki.gg, and filters search results in Google.",
"permissions": [
"storage",
"*://*.gamepedia.com/*",
"*://*.fandom.com/*",
"webNavigation"
],
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"background": {
"persistent": true,
"scripts": [
"built/background.js"
]
},
"browser_action": {
"default_icon": "icons/128.png",
"default_title": "Redirect to wiki.gg",
"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"
}
],
"icons": {
"64": "icons/64.png",
"128": "icons/128.png"
},
"manifest_version": 2
}