initial commit
This commit is contained in:
commit
a2fced0b73
9 changed files with 529 additions and 0 deletions
23
manifest.json
Normal file
23
manifest.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"name": "Youtube Spam Purge!",
|
||||
"version": "1.0",
|
||||
"manifest_version": 3,
|
||||
"background": {
|
||||
"service_worker": "background.js"
|
||||
},
|
||||
"action": {
|
||||
"default_popup": "hello.html"
|
||||
},
|
||||
"permissions": [
|
||||
"tabs"
|
||||
],
|
||||
"content_scripts": [{
|
||||
"css": ["content-styles.css"],
|
||||
"js": ["content.js","clientid.js"],
|
||||
"matches": ["https://www.youtube.com/watch?v=*"]
|
||||
},
|
||||
{
|
||||
"js": ["deleteallcomment.js"],
|
||||
"matches": ["https://www.youtube.com/deleteallcomments"]
|
||||
}]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue