forked from mathiasbynens/tibia.com-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
56 lines (56 loc) · 1.05 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
{
"manifest_version": 3,
"name": "Tibia.com enhancer",
"description": "Improve the user experience on Tibia.com.",
"author": "Mathias Bynens",
"version": "2.1.10",
"homepage_url": "https://mths.be/tibiauserjs",
"icons": {
"48": "img/icon-48.png",
"64": "img/icon-64.png",
"128": "img/icon-128.png",
"256": "img/icon-256.png"
},
"permissions": [
"declarativeNetRequest",
"storage"
],
"host_permissions": [
"https://www.tibia.com/*"
],
"declarative_net_request": {
"rule_resources": [
{
"id": "bypass-cache",
"enabled": true,
"path": "rules/bypass-cache.json"
}
]
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"http://*.tibia.com/*",
"https://*.tibia.com/*"
],
"css": [
"css/common.css"
],
"js": [
"data/buildings.js",
"js/common.js",
"js/skip-intro.js",
"js/bazaar.js",
"js/building.js",
"js/character.js",
"js/guild.js",
"js/world.js",
"js/forum.js",
"js/news.js",
"js/highscores.js",
"js/kill-statistics.js"
]
}
]
}