initial commit

This commit is contained in:
Hegedus Gergely 2021-11-08 09:36:17 +02:00 committed by Gergely Hegedus
commit a2fced0b73
9 changed files with 529 additions and 0 deletions

23
manifest.json Normal file
View 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"]
}]
}