forked from kamilakis/qbitload
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
39 lines (39 loc) · 894 Bytes
/
manifest.json
File metadata and controls
39 lines (39 loc) · 894 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
{
"manifest_version": 2,
"name": "qbitload",
"version": "1.0.0",
"description": "Send torrent/magnet links to qBittorrent with category support and connection status",
"author": "kamilakis",
"homepage_url": "https://github.com/kamilakis/qbitload",
"permissions": [
"contextMenus",
"storage",
"https://*/*",
"http://*/*"
],
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["leftclicksend.js"],
"run_at": "document_idle"
}
],
"browser_action": {
"default_popup": "config.html"
},
"browser_specific_settings": {
"gecko": {
"id": "qbitload@automa.gr",
"data_collection_permissions": {
"required": ["none"]
}
}
}
}