-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest_firefox.json
70 lines (68 loc) · 1.84 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
{
"manifest_version": 2,
"name": "Pardus Drug Clock",
"author": "Miche",
"version": "1.5.0",
"description": "Track how many drugs you have consumed within Pardus (a MMORPG set in space) to ensure that you don't become too drugged.",
"icons": {
"16": "icons/icon_16.png",
"32": "icons/icon_32.png",
"64": "icons/icon_64.png",
"128": "icons/icon_128.png"
},
"content_scripts": [
{
"matches": [
"*://orion.pardus.at/main.php*",
"*://orion.pardus.at/building.php",
"*://orion.pardus.at/logout.php",
"*://orion.pardus.at/ship2ship_combat.php*",
"*://orion.pardus.at/ship2opponent_combat.php*",
"*://artemis.pardus.at/main.php*",
"*://artemis.pardus.at/building.php",
"*://artemis.pardus.at/logout.php",
"*://artemis.pardus.at/ship2ship_combat.php*",
"*://artemis.pardus.at/ship2opponent_combat.php*",
"*://pegasus.pardus.at/main.php*",
"*://pegasus.pardus.at/building.php",
"*://pegasus.pardus.at/logout.php",
"*://pegasus.pardus.at/ship2ship_combat.php*",
"*://pegasus.pardus.at/ship2opponent_combat.php*"
],
"js": [ "drugclock.js" ],
"css": [ "drugclock.css" ],
"all_frames": true,
"run_at": "document_end"
}
],
"background": {
"scripts": [ "background.js" ]
},
"permissions": [ "storage" ],
"browser_action": {
"browser_style": true,
"default_icon": {
"16": "icons/icon_16.png",
"32": "icons/icon_32.png",
"64": "icons/icon_64.png",
"128": "icons/icon_128.png"
},
"default_title": "Pardus Drug Clock",
"default_popup": "popup/popup.html",
"default_area": "navbar"
},
"options_ui": {
"page": "options/options.html",
"chrome_style": true,
"browser_style": true
},
"web_accessible_resources": [
"images/*.png"
],
"applications": {
"gecko": {
"id": "pardusdrugclock@xcom-alliance.info",
"strict_min_version": "56.0"
}
}
}