-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
120 lines (120 loc) · 3.47 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "EwsgitOS Web Extension",
"description": "The EwsgitOS website customizations",
"version": "0.0.2",
"manifest_version": 3,
"author": "Ewsgit",
"permissions": ["activeTab", "storage", "scripting", "declarativeNetRequest"],
"host_permissions": ["https://*/*", "http://*/*"],
"content_scripts": [
{
"matches": [ "https://*.youtube.com/*" ],
"css": [ "./src/sites/youtube.com/all.css" ],
"js": ["./src/sites/youtube.com/youtube.js"]
},
{
"matches": [ "https://music.youtube.com/history" ],
"js": [ "./src/sites/music.youtube.com/history.js" ]
},
{
"matches": [ "https://searx.be/" ],
"css": [ "./src/sites/searx.be/index.css" ]
},
{
"matches": [ "https://searx.be/search" ],
"css": [ "./src/sites/searx.be/search.css" ]
},
{
"matches": [ "https://www.google.com/*", "https://www.google.co.uk/*" ],
"css": [ "./src/sites/google.com/all.css" ]
},
{
"matches": [ "https://www.sparxmaths.uk/student*" ],
"js": [ "./src/sites/sparxmaths.uk/bookwork.js" ],
"css": [ "./src/sites/sparxmaths.uk/student.css" ],
"run_at": "document_end"
},
{
"matches": [ "https://auth.sparxmaths.uk/*" ],
"css": [ "./src/sites/sparxmaths.uk/auth.css" ]
},
{
"matches": [ "https://*.sparxmaths.com/*" ],
"js": [ "./src/sites/sparxmaths.com/redirect.js" ]
},
{
"matches": [ "https://twitter.com/*" ],
"css": [ "./src/sites/twitter.com/all.css" ]
},
{
"matches": [ "https://manchesterworld.uk/*" ],
"css": [ "./src/sites/manchesterworld.uk/all.css" ]
},
{
"matches": [ "https://drafts.csswg.org/*" ],
"css": [ "./src/sites/csswg.org/drafts.css" ]
},
{
"matches": [ "https://*.sharepoint.com/*" ],
"css": [ "./src/sites/sharepoint.com/all.css" ]
},
{
"matches": [ "https://*.twitch.tv/*" ],
"css": [ "./src/sites/twitch.tv/all.css" ]
},
{
"matches": [ "https://*.office.com/*" ],
"css": [ "./src/sites/office.com/index.css" ]
},
{
"matches": [ "https://login.microsoftonline.com/*" ],
"css": [ "./src/sites/microsoftonline.com/login.css" ]
},
{
"matches": [ "https://myaccount.microsoft.com/*" ],
"css": [ "./src/sites/myaccount.microsoft.com/all.css" ]
},
{
"matches": [ "https://duckduckgo.com/" ],
"css": [ "./src/sites/duckduckgo.com/homepage.css" ]
},
{
"matches": [ "https://slopegame.io/" ],
"js": [ "./src/sites/slopegame.io/redirect.js" ]
},
{
"matches": [ "https://developer.mozilla.org/*" ],
"css": [ "./src/sites/developer.mozilla.org/main.css" ]
},
{
"matches": [ "https://*.bing.com/*" ],
"css": [ "./src/sites/bing.com/all.css" ]
},
{
"matches": [ "https://localhost:6543/block" ],
"css": [ "./src/sites/siteblocker-localhost6543/block.css" ]
}
],
"declarative_net_request": {
"rule_resources": [
{
"id": "depressing-sparxmath",
"enabled": true,
"path": "./src/sites/sparxmaths.uk/block_rules.json"
},
{
"id": "youtube-com",
"enabled": true,
"path": "./src/sites/youtube.com/block_rules.json"
},
{
"id": "siteblocker-localhost6543",
"enabled": true,
"path": "./src/sites/siteblocker-localhost6543/block_rules.json"
}
]
},
"background": {
"service_worker": "background.js"
}
}