-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathmanifest.json
82 lines (82 loc) · 2.6 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "__MSG_extensionName__",
"version": "1.13.0",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"icons": {
"128": "src/icon.png"
},
"author": "Michael Ziminsky",
"homepage_url": "https://github.com/mgziminsky/FacebookTrackingRemoval",
"browser_specific_settings": {
"gecko": {
"id": "{bb1b80be-e6b3-40a1-9b6e-9d4073343f0b}",
"strict_min_version": "113.0"
}
},
"permissions": ["alarms", "declarativeNetRequestWithHostAccess", "scripting", "storage", "webNavigation"],
"host_permissions": [
"*://*.facebook.com/*",
"*://*.messenger.com/*",
"*://*.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion/*",
"https://mgziminsky.gitlab.io/FacebookTrackingRemoval/*"
],
"options_ui": {
"page": "src/options/options.html",
"open_in_tab": false
},
"background": {
"type": "module",
"scripts": ["src/background/background.js"],
"service_worker": "src/background/background.js"
},
"action": {
"default_icon": "src/icon.png",
"default_popup": "src/options/options.html"
},
"page_action": {
"default_icon": "src/icon.png",
"default_popup": "src/options/options.html",
"show_matches": [
"*://*.facebook.com/*",
"*://*.messenger.com/*",
"*://*.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion/*"
]
},
"content_scripts": [
{
"all_frames": true,
"matches": [
"*://*.facebook.com/*",
"*://*.messenger.com/*",
"*://*.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion/*"
],
"css": ["src/content_script/app.css"],
"js": ["browser-polyfill.min.js", "src/content_script/content_script.js"],
"run_at": "document_end",
"world": "ISOLATED"
}
],
"web_accessible_resources": [
{
"use_dynamic_url": true,
"matches": [
"*://*.facebook.com/*",
"*://*.messenger.com/*",
"*://*.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion/*"
],
"resources": ["/src/*"]
}
],
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset",
"enabled": true,
"path": "data/declarativeNetRequest.json"
}
]
},
"incognito": "spanning",
"manifest_version": 3
}