-
Notifications
You must be signed in to change notification settings - Fork 0
Collapse file tree
Files
Search this repository(forward slash) forward slash/
/
Copy pathmanifest.json
More file actions
More file actions
Latest commit
71 lines (71 loc) · 1.72 KB
/
Copy pathmanifest.json
File metadata and controls
71 lines (71 loc) · 1.72 KB
You must be signed in to make or propose changes
More edit options
Edit and raw actions
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
{
"manifest_version": 3,
"name": "SERP Domain Index v2",
"version": "2.0.0",
"description": "Hides search results using an exact, disk-backed hostname-label index with resumable imports and public-suffix protection.",
"permissions": [
"storage",
"unlimitedStorage"
],
"host_permissions": [
"*://raw.githubusercontent.com/Fengsemul/2/main/*",
"*://*.google.com/*",
"*://*.google.co.uk/*",
"*://*.google.de/*",
"*://*.bing.com/*",
"*://*.duckduckgo.com/*",
"*://search.yahoo.com/*",
"*://*.startpage.com/*",
"*://*.ecosia.org/*",
"*://search.brave.com/*",
"*://*.yandex.com/*",
"*://*.yandex.ru/*"
],
"background": {
"scripts": [
"public-suffixes.js",
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*://*.google.com/search*",
"*://*.google.co.uk/search*",
"*://*.google.de/search*",
"*://*.bing.com/search*",
"*://*.duckduckgo.com/*",
"*://search.yahoo.com/search*",
"*://*.startpage.com/*",
"*://*.ecosia.org/search*",
"*://search.brave.com/search*",
"*://*.yandex.com/search*",
"*://*.yandex.ru/search*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"public_suffix_list.dat"
],
"matches": [
"<all_urls>"
]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"browser_specific_settings": {
"gecko": {
"id": "serp-domain-index-v2@example.local",
"strict_min_version": "128.0"
}
}
}