-
Notifications
You must be signed in to change notification settings - Fork 8
/
manifest.json
48 lines (48 loc) · 883 Bytes
/
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
{
"manifest_version": 2,
"name": "Cute Save Button",
"version": "0.8.3.1",
"description": "__MSG_extensionDescription__",
"author": "Deil",
"default_locale": "en",
"icons": {
"48": "bestgirl.png"
},
"permissions": [
"downloads",
"storage",
"*://*/*"
],
"background": {
"scripts": [
"js/settings-default.js",
"js/background.js",
"js/download.js"
]
},
"content_scripts": [{
"js": [
"js/content-script.js"
],
"matches": [
"*://*/*"
],
"run_at": "document_start",
"all_frames": true
}],
"web_accessible_resources": [
"bestgirl.png"
],
"options_ui": {
"page": "settings.html"
},
"browser_action": {
"default_icon": "bestgirl.png"
},
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "53.0"
}
}
}