-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmanifest.json
More file actions
26 lines (26 loc) · 893 Bytes
/
manifest.json
File metadata and controls
26 lines (26 loc) · 893 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
{
"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.4",
"manifest_version": 2,
"homepage_url": "https://offcloud.com/",
"background": {
"page": "bg.html",
"persistent": true
},
"content_scripts": [{
"matches": ["*://*/*"],
"js": ["lib/js/jquery-2.0.3.min.js", "lib/js/notie.min.js", "main.js"],
"css": ["lib/css/notie.min.css", "css/offcloud.css"]
}],
"permissions": ["*://*/*", "storage", "tabs", "contextMenus", "notifications"],
"icons": {
"128": "logo.png",
"16": "logo.png"
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"web_accessible_resources": ["lib/fonts/OpenSans-Regular.ttf"]
}