forked from GitZip/firefox-addons
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
executable file
·55 lines (48 loc) · 1.23 KB
/
manifest.json
File metadata and controls
executable file
·55 lines (48 loc) · 1.23 KB
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
{
"manifest_version": 2,
"name": "GitZip",
"description": "It can make the sub-directories and files of github repository as zip and download it",
"version": "1.0.2",
"page_action": {
"default_icon": "images/icon-128px.png",
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html"
},
"background": {
"page": "background.html"
},
"permissions": [
"storage",
"activeTab",
"contextMenus",
"theme",
"*://github.com/*",
"https://api.github.com/repos/*"
],
"content_scripts": [
{
"matches": ["*://github.com/*"],
"js": [
"js/content/jszip.min.js",
"js/content/FileSaver.min.js",
"js/content/main.js"
],
"css": ["css/main.css"]
},
{
"matches": ["*://kinolien.github.io/gitzip/*"],
"js": ["js/content/keysync.js"]
},
{
"matches": ["*://gitzip.org/gettoken/success"],
"js": ["js/content/autosave.js"]
}
],
"applications": {
"gecko": {
"id": "gitzip-firefox-addons@gitzip.org"
}
}
}