forked from einaregilsson/Redirector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
92 lines (91 loc) · 2.31 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"manifest_version": 2,
"name": "Redirector",
"description": "Automatically redirect content based on user-defined rules.",
"version": "3.5.3",
"icons": {
"16": "images/icon-light-theme-16.png",
"19": "images/icon-light-theme-19.png",
"32": "images/icon-light-theme-32.png",
"38": "images/icon-light-theme-38.png",
"48": "images/icon-light-theme-48.png",
"64": "images/icon-light-theme-64.png",
"128": "images/icon-light-theme-128.png"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"webNavigation",
"storage",
"tabs",
"http://*/*",
"https://*/*",
"notifications"
],
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"background": {
"scripts": [
"js/redirect.js",
"js/background.js"
],
"persistent": true
},
"options_ui": {
"page": "popup.html",
"chrome_style": true
},
"browser_action": {
"default_icon": {
"16": "images/icon-light-theme-16.png",
"19": "images/icon-light-theme-19.png",
"32": "images/icon-light-theme-32.png",
"38": "images/icon-light-theme-38.png",
"48": "images/icon-light-theme-48.png",
"64": "images/icon-light-theme-64.png",
"128": "images/icon-light-theme-128.png"
},
"default_title": "Redirector",
"default_popup": "popup.html",
"theme_icons": [
{
"dark": "images/icon-light-theme-16.png",
"light": "images/icon-dark-theme-16.png",
"size": 16
},
{
"dark": "images/icon-light-theme-19.png",
"light": "images/icon-dark-theme-19.png",
"size": 19
},
{
"dark": "images/icon-light-theme-32.png",
"light": "images/icon-dark-theme-32.png",
"size": 32
},
{
"dark": "images/icon-light-theme-38.png",
"light": "images/icon-dark-theme-38.png",
"size": 38
},
{
"dark": "images/icon-light-theme-48.png",
"light": "images/icon-dark-theme-48.png",
"size": 48
},
{
"dark": "images/icon-light-theme-64.png",
"light": "images/icon-dark-theme-64.png",
"size": 64
},
{
"dark": "images/icon-light-theme-128.png",
"light": "images/icon-dark-theme-128.png",
"size": 128
}
]
}
}