-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathmanifest.json
More file actions
30 lines (30 loc) · 614 Bytes
/
manifest.json
File metadata and controls
30 lines (30 loc) · 614 Bytes
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
{
"manifest_version": 3,
"name": "YouTube AdBlocker",
"version": "2.1",
"description": "Removes Ads on YouTube",
"permissions": [
"activeTab"
],
"action": {
"default_icon": "icon.png",
"default_popup": "index.html",
"js": ["index.js"]
},
"icons":
{
"128": "icon.png",
"16": "icon.png",
"48": "icon.png"
},
"content_scripts": [
{
"matches": [
"*://youtube.com/*",
"*://www.youtube.com/*",
"*://m.youtube.com/*"
],
"js": ["content.js"]
}
]
}