-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
33 lines (33 loc) · 911 Bytes
/
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
{
"name": "silence",
"description": "mute commentary from websites",
"version": "0.1.0",
"manifest_version": 3,
"content_scripts": [
{
"matches": ["*://*.youtube.com/*"],
"js": ["youtube.js"],
"all_frames": true,
"run_at": "document_start"
},
{
"matches": ["*://*.linkedin.com/*"],
"js": ["lib/jquery-3.6.0.js", "linkedin.js"],
"all_frames": true,
"run_at": "document_start"
},
{
"matches": ["*://*.facebook.com/*"],
"js": ["facebook.js"],
"all_frames": true,
"run_at": "document_start"
}
],
"icons": {
"16": "assets/icon_16.ico",
"24": "assets/icon_24.ico",
"32": "assets/icon_32.ico",
"48": "assets/icon_48.png",
"64": "assets/icon_64.ico"
}
}