-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
43 lines (43 loc) · 1.1 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
{
"manifest_version": 2,
"name": "AntiTracker",
"version": "0.0.1",
"description": "Obfuscator and forger to prevent web tracking",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"applications": {
"gecko": {
"id": "antitracker@example.com"
}
},
"permissions": [
"tabs",
"activeTab",
"privacy",
"webRequest",
"webRequestBlocking",
"storage",
"webNavigation",
"menus",
"management",
"<all_urls>"
],
"browser_action": {
"default_popup": "popup.html"
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["/js/modules/keystrokes.js", "/js/modules/mouse.js", "/js/modules/canvas.js"],
"css": ["/css/keystrokes.css"],
"run_at": "document_start",
"all_frames": true,
"match_about_blank": true
}],
"background": {
"scripts": ["js/background.js"],
"type": "module",
"persistent": true
},
"icons": {
"48": "icons/icon-face-48.ico"
}
}