-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
38 lines (33 loc) · 845 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
34
35
36
37
38
{
"manifest_version":2,
"version":"1.0",
"name":"Youtube Comment Filter",
"icons":{
"128":"Logos/youtubeLogo128.png",
"48":"Logos/youtubeLogo48.png",
"16":"Logos/youtubeLogo16.png"
},
"description":"Youtube comments Filtering extension",
"browser_action":{
"default_popup":"popup.html",
"default_title":"ACMProject",
"default_icon":"Logos/youtubeLogo16.png"
},
"background":{
"scripts":["eventPage.js"],
"persistent":false
},
"content_scripts":[
{
"matches":["https://www.youtube.com/*"],
"js":["content.js","jquery.min.js"],
"css":["content.css"]
}
],
"permissions":[
"tabs",
"https://www.youtube.com/*",
"notifications",
"storage"
]
}