-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathmanifest.json
57 lines (56 loc) · 1.15 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
{
"manifest_version": 2,
"name": "Whimsy",
"version": "3.2.0",
"description": "Add some Whimsy to your Firefox! 🦄🌈",
"homepage_url": "https://github.com/bwinton/whimsy/tree/webextension",
"author": "Blake Winton <[email protected]>",
"contributors": [
"Daniela Arcese",
"Erica Wright"
],
"icons": {
"48": "icon.svg",
"64": "icon.svg",
"96": "icon.svg"
},
"applications": {
"gecko": {
"id": "jid1-6mUPixNFCjAgkg@jetpack"
}
},
"permissions": [
"tabs",
"storage",
"bookmarks",
"topSites",
"contextMenus",
"clipboardWrite"
],
"background": {
"scripts": [
"background-scripts/background.js",
"background-scripts/initialize.js",
"background-scripts/mario.js",
"background-scripts/urlbar.js"
]
},
"browser_action": {
"default_icon": {
"48": "icon.svg",
"64": "icon.svg",
"96": "icon.svg"
},
"default_title": "Whimsy"
},
"options_ui": {
"page": "settings/options.html",
"chrome_style": true
},
"omnibox": {
"keyword": "whimsy"
},
"chrome_url_overrides": {
"newtab": "newtab-page/newtab.html"
}
}