-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
49 lines (38 loc) · 1.03 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
{
"name" : "__MSG_extensionName__",
"description" : "__MSG_extensionDescription__",
"manifest_version" : 2,
"version" : "1.1",
"author" : "Xavier “dascritch” Mouton-Dubosc",
"homepage_url" : "https://dascritch.net/post/2014/06/24/Sniffeur-d-ancre",
"default_locale" : "en",
"applications": {
"gecko": {
"id": "jid1-XX0TcCGBa7GVGw@jetpack",
"strict_min_version": "64.0"
}
},
"permissions": [
"activeTab",
"storage",
"contextMenus"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"options_ui": {
"page": "options.html"
},
"browser_action": {
"default_icon": {
"16" : "/data/icon-16.png",
"32" : "/data/icon-32.png",
"64" : "/data/icon-64.png"
},
"browser_style": true,
"default_title": "__MSG_buttonDescription__"
}
}