-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.json
More file actions
47 lines (47 loc) · 980 Bytes
/
manifest.json
File metadata and controls
47 lines (47 loc) · 980 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
42
43
44
45
46
47
{
"name": "Offcloud.com Extension",
"description": "Allows you to take any link and fetch its data, either by directly downloading it, backing it up or transferring it to a third party",
"version": "0.2.6",
"manifest_version": 2,
"homepage_url": "https://offcloud.com/",
"background": {
"page": "bg.html",
"persistent": true
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"lib/js/jquery-3.2.1.min.js",
"lib/js/notie.js",
"main.js"
],
"css": [
"lib/css/OpenSans.css",
"lib/css/notie.css",
"css/offcloud.css"
]
}
],
"permissions": [
"*://*/*",
"storage",
"tabs",
"contextMenus",
"notifications",
"clipboardWrite"
],
"icons": {
"128": "logo.png",
"16": "logo.png"
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"web_accessible_resources": [
"lib/fonts/*.woff2"
]
}