forked from siebrencosijn/Fingerprint-Block
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
48 lines (42 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
44
45
46
47
48
{
"manifest_version": 2,
"name": "FP-Block 2",
"version": "0.1",
"description": "Preventing browser fingerprinting",
"homepage_url": "https://github.com/siebrencosijn/Fingerprint-Block.git",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"permissions": [
"<all_urls>",
"webRequest",
"webRequestBlocking",
"webNavigation",
"tabs",
"storage",
"unlimitedStorage",
"notifications",
"browserSettings",
"privacy"
],
"icons": {
"48": "interface/icons/icon.png"
},
"browser_action": {
"browser_style": true,
"default_icon": "interface/icons/logo.png",
"default_popup": "interface/popup.html",
"default_title": "FP-Block"
},
"background": {
"page": "src/background.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["src/content.js"]
}
]
}