-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
46 lines (46 loc) · 1.25 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
44
45
46
{
"manifest_version": 2,
"name": "Toggle Resist Fingerprinting",
"version": "1.2",
"description": "Adds a button to the navigation bar to toggle the \"resist fingerprinting\" setting.",
"author": "Aaron Papp",
"homepage_url": "https://github.com/Aaron-P/ToggleResistFingerprinting",
"icons": {
"24": "src/icons/icon.svg",
"32": "src/icons/icon.svg",
"48": "src/icons/icon.svg",
"64": "src/icons/icon.svg",
"96": "src/icons/icon.svg"
},
"permissions": [
"storage",
"privacy"
],
"background": {
"scripts": [
"src/background.js"
]
},
"options_ui": {
"browser_style": true,
"page": "src/options.xhtml"
},
"browser_action": {
"default_icon": "src/icons/icon.svg",
"default_title": "Resist Fingerprinting",
"default_area": "tabstrip",
"theme_icons": [
{
"light": "src/icons/icon-light.svg",
"dark": "src/icons/icon.svg",
"size": 32
}
]
},
"browser_specific_settings": {
"gecko": {
"id": "{3346f53a-bd1f-4f3f-94ff-70bb122083b3}",
"strict_min_version": "63.0"
}
}
}