-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
41 lines (33 loc) · 791 Bytes
/
manifest.json
File metadata and controls
41 lines (33 loc) · 791 Bytes
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
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "1.2.4",
"description": "__MSG_extensionDescription__",
"author": "Martin Dreier",
"homepage_url": "https://github.com/mdreier/savetabs",
"default_locale": "en",
"applications": {
"gecko": {
"id": "{f587d35c-943b-4323-8aee-cd8691df4db0}"
}
},
"icons": {
"48": "icons/savetabs-48.png",
"96": "icons/savetabs-96.png"
},
"options_ui": {
"page": "options/options.html"
},
"permissions": [
"tabs",
"storage",
"activeTab"
],
"browser_action": {
"default_icon": "icons/savetabs-32.png",
"default_title": "__MSG_popupTitle__",
"default_popup": "popup/savetabs.html",
"browser_style": true
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
}