-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
75 lines (75 loc) · 1.64 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
{
"name": "BetterAdrena",
"short_name": "BetterAdrena",
"version": "1.2.7",
"manifest_version": 2,
"description": "BetterAdrena é uma extensão que traz várias melhorias para o fórum Adrenaline.",
"homepage_url": "https://www.egaming.com.br/projects/BetterAdrena",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"64": "icons/icon64.png",
"128": "icons/icon128.png"
},
"browser_action": {
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"64": "icons/icon64.png",
"128": "icons/icon128.png"
}
},
"permissions": [
"*://*.adrenaline.com.br/forum*",
"*://*.adrenaline.com.br/barra*",
"*://adrenaline.uol.com.br/forum*",
"activeTab",
"tabs"
],
"background": {
"scripts": [
"src/js/bg.js"
]
},
"web_accessible_resources": [
"src/css/*.css",
"src/js/*.js"
],
"content_scripts": [
{
"matches": [
"*://*.adrenaline.com.br/forum*",
"*://adrenaline.com.br/forum*",
"*://forum.adrenaline.com.br/*"
],
"css": [
"src/css/themeDefaults.css",
"src/css/light.css",
"src/css/oldTheme.css"
],
"js": [
"src/js/applyJS.js"
],
"all_frames": true
},
{
"matches": [
"*://*.adrenaline.com.br/barra*",
"*://adrenaline.com.br/barra*"
],
"css": [
"src/css/themeDefaults.css",
"src/css/barra.css"
],
"all_frames": true
},
{
"matches": [
"*://adrenaline.uol.com.br/forum*"
],
"js": [
"src/js/redirectFromUOL.js"
]
}
]
}