Skip to content

Commit ce9562a

Browse files
committed
Add firefox-manifest
To be used as an alternate manifest for firefox extension.
1 parent 8e09b7c commit ce9562a

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

alternates/firefox-manifest.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"manifest_version": 2,
3+
"version": "2.1.0",
4+
5+
"applications": {
6+
"gecko": {
7+
8+
}
9+
},
10+
11+
"name": "Easy Stack Search",
12+
"description" : "A lightweight extension that makes searching Stack sites like StackOverflow quick & easy.",
13+
"author": "Chrisvin",
14+
"homepage_url": "https://github.com/Chrisvin/EasyStackSearchExtension",
15+
16+
"icons": {
17+
"16": "icons/16.png",
18+
"32": "icons/32.png",
19+
"48": "icons/48.png",
20+
"64": "icons/64.png",
21+
"96": "icons/96.png",
22+
"128": "icons/128.png"
23+
},
24+
25+
"omnibox": {
26+
"keyword" : "s"
27+
},
28+
29+
"background": {
30+
"scripts": [
31+
"background/omnibox.js",
32+
"background/contextMenus.js"
33+
]
34+
},
35+
36+
"options_ui": {
37+
"page":"options/options.html",
38+
"open_in_tab":true
39+
},
40+
41+
"permissions": [
42+
"storage",
43+
"contextMenus"
44+
]
45+
}

0 commit comments

Comments
 (0)