-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.json
47 lines (47 loc) · 1009 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
{
"name": "cobalt downloader",
"description": "allows easy downloads of media via cobalt.",
"version": "1.0.7",
"manifest_version": 3,
"homepage_url": "https://github.com/dimdenGD/cobalt-extension",
"background": {
"service_worker": "background.js"
},
"permissions": [
"activeTab",
"contextMenus",
"storage",
"declarativeNetRequest",
"declarativeNetRequestWithHostAccess"
],
"host_permissions": [
"*://*.cobalt.tools/*"
],
"icons": {
"128": "/images/co.png"
},
"action": {
"default_icon": {
"128": "/images/co.png"
},
"default_title": "download media from this page"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"declarative_net_request": {
"rule_resources" : [{
"id": "ruleset",
"enabled": true,
"path": "ruleset.json"
}]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content_script.js"],
"run_at": "document_end"
}
]
}