-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
46 lines (44 loc) · 1006 Bytes
/
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
{
"id": "jid0-rDCwvHBdPyHNUj99GHl6uIIzMg0@jetpack",
"description": "Plays weird meditational music, turns pages around 180 degrees and displays a lasagna with horse noises every 15 seconds.",
"manifest_version": 2,
"name": "AddOmmmm",
"title": "AddOmmmm",
"author": "tobbi",
"version": "0.4",
"license": "MPL-2.0",
"homepage_url": "http://www.tobbi.ml",
"icons": {
"16": "data/icon16.png",
"48": "data/icon48.png",
"64": "data/icon64.png"
},
"applications": {
"gecko": {
"id": "jid0-rDCwvHBdPyHNUj99GHl6uIIzMg0@jetpack"
}
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["data/addommmm.js"]
}
],
"background": {
"scripts": ["data/addommmm_background.js"]
},
"browser_action": {
"default_icon": {
"16": "data/icon16.png",
"48": "data/icon48.png",
"64": "data/icon64.png"
}
},
"permissions": [
"alarms",
"storage"
],
"options_ui": {
"page": "options.html"
}
}