-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
43 lines (43 loc) · 1.02 KB
/
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
{
"browser_action": {
"default_icon": "sd.png"
},
"sidebar_action": {
"default_icon": "sd.png",
"default_panel": "popup/sidebar.html",
"open_at_install": false
},
"description": "Share files between devices in your local network",
"homepage_url": "https://github.com/ueen/SnapdropFirefoxAddon",
"manifest_version": 2,
"name": "Snapdrop Browser Extension",
"version": "1.9.7",
"options_ui": {
"page": "options/options.html"
},
"content_security_policy": "script-src 'self' https://snapdrop.net; object-src 'self'",
"permissions": [
"notifications",
"clipboardWrite",
"downloads",
"storage",
"tabs",
"<all_urls>"
],
"browser_specific_settings": {
"gecko": {
"id": "{3af274cf-1fa9-47bc-9167-1f2251fee500}"
}
},
"background": {
"scripts": [
"browser-polyfill.js",
"snapdrop/network.js",
"snapdrop/connect.js",
"background.js"
]
},
"icons": {
"128": "sd.png"
}
}