-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
49 lines (49 loc) · 1.61 KB
/
manifest.json
File metadata and controls
49 lines (49 loc) · 1.61 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
40
41
42
43
44
45
46
47
48
49
{
"manifest_version": 3,
"name": "FINGER",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA6vxOXYUKRfCy2gT+yf6M8zMQI2nSirotmjyIWbSXaN17XZ9+v0rbYPebCmrPSmHGhdJz1/hBiuRfxiGAYX9TCu76ZuNlLYFSwlmerEHQWzVZIkF35+/GvHDwd8sT3u0eGdyGWG4PIZ82+ZnEMLL2BTzrWi4udaN6yi0d7OaBf3QwNmCFw1xZTkvTB4xbSx/1Zs3LJwJbZq68ipVYOvyVlxAp5NGQhNB9NGxhjvMY3BxZPaUB6bhIzJAVno5i5oAEvNG4kTJ8UOLIbF8N0FBVbbCV2e35XaSwbZALZ8n8cgpFybpY6DO3Juvr32Blm8T3OW8WqydXLP71eHVKWm0dIQIDAQAB",
"permissions": [
"activeTab",
"storage"
],
"description": "This tool was developed by security experts after a deep research, it's ready to block the most trend and sofisticated trackers.",
"version": "1.2.5",
"action": {
"default_icon": "images/finger.png",
"default_title": "Click me!"
},
"options_ui": {
"page": "options/options.html",
"open_in_tab": false
},
"background": {
"service_worker": "background/service-worker.js",
"type": "module"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["contentScripts/main.js"],
"world": "MAIN",
"run_at": "document_start",
"all_frames": true
},
{
"matches": ["<all_urls>"],
"js": ["contentScripts/message.js"],
"run_at": "document_idle",
"all_frames": false
},
{
"matches": ["<all_urls>"],
"js": ["contentScripts/techniques.js"],
"world": "MAIN",
"run_at": "document_start",
"all_frames": true
}
],
"externally_connectable": {
"ids": [],
"matches": ["<all_urls>"]
}
}