-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.firefox.json
More file actions
39 lines (39 loc) · 1.15 KB
/
manifest.firefox.json
File metadata and controls
39 lines (39 loc) · 1.15 KB
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": 3,
"name": "Linkbucket",
"short_name": "Linkbucket",
"version": "0.4.2",
"description": "Add links to your Linkbucket account quickly from the browser.",
"icons": {
"16": "assets/icons/icon-16.png",
"32": "assets/icons/icon-32.png",
"48": "assets/icons/icon-48.png",
"128": "assets/icons/icon-128.png"
},
"action": {
"default_title": "Linkbucket",
"default_icon": {
"16": "assets/icons/icon-16.png",
"32": "assets/icons/icon-32.png"
},
"default_popup": "src/popup/popup.html"
},
"permissions": ["storage", "activeTab"],
"host_permissions": ["https://linkbucket.app/api/*"],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"homepage_url": "https://linkbucket.app",
"author": "Linkbucket Team",
"browser_specific_settings": {
"gecko": {
"id": "linkbucket@linkbucket.app",
"strict_min_version": "142.0",
"data_collection_permissions": {
"required": ["browsingActivity", "authenticationInfo"],
"urlbar_data_collection": false,
"private_browsing_data_collection": false
}
}
}
}