-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
52 lines (45 loc) · 1 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
{
"manifest_version": 2,
"author": "JimmyTinsley",
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "1.2",
"homepage_url": "https://github.com/JimmyTinsley/jsproxy-firefox-extension",
"default_locale": "en",
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "59.0"
}
},
"background": {
"scripts": ["background.js"]
},
"permissions": [
"menus",
"activeTab",
"storage",
"tabs"
],
"icons": {
"16": "icons/page-16.png",
"32": "icons/page-32.png",
"48": "icons/page-48.png"
},
"options_ui": {
"page": "options.html",
"browser_style": true
},
"browser_action": {
"default_title": "jsproxy-firefox-extension"
},
"page_action": {
"browser_style": true,
"default_icon": {
"16": "icons/page-16.png",
"32": "icons/page-32.png"
},
"default_title": "__MSG_pageAction__",
"show_matches": ["<all_urls>"]
}
}