aboutsummaryrefslogtreecommitdiff
path: root/manifest-firefox.json
diff options
context:
space:
mode:
Diffstat (limited to 'manifest-firefox.json')
-rw-r--r--manifest-firefox.json54
1 files changed, 54 insertions, 0 deletions
diff --git a/manifest-firefox.json b/manifest-firefox.json
new file mode 100644
index 0000000..da98670
--- /dev/null
+++ b/manifest-firefox.json
@@ -0,0 +1,54 @@
1{
2
3 "manifest_version": 2,
4 "name": "re:claimID",
5 "description": "An extension for use with re:claimID.",
6 "version": "0.13.0",
7
8 "applications": {
9 "gecko": {
10 "strict_min_version": "57.0"
11 }
12 },
13 "browser_specific_settings": {
14 "gecko": {
15 "id": "{b2d334a4-bcd4-476f-9122-4e85f8a71ec5}",
16 "strict_min_version": "57.0"
17 }
18 },
19
20 "browser_action": {
21 "browser_style": true,
22 "default_icon": "icons/logo.png",
23 "theme_icons": [{
24 "light": "icons/logo_dark.png",
25 "dark": "icons/logo.png",
26 "size": 32
27 }],
28 "default_title": "re:claimID",
29 "default_popup": "popup/popup.html"
30 },
31
32 "icons": {
33 "48": "icons/logo48.png",
34 "96": "icons/logo96.png"
35 },
36
37 "background": {
38 "scripts": [
39 "background/reclaim.js",
40 "scripts/gnunet.js"
41 ]
42 },
43
44 "permissions": ["storage", "https://api.reclaim/*", "https://ui.reclaim/*", "http://localhost:7776/*",
45 "webRequest", "webRequestBlocking"],
46 "web_accessible_resources": ["*/**", "index.html", "*.js", "assets/*", "*.woff*", "*.ttf", "*.svg"],
47
48 "options_ui": {
49 "page": "index.html",
50 "open_in_tab": true,
51 "browser_style": true,
52 "chrome_style": true
53 }
54}