Initial commit

This commit is contained in:
pschwarzer20 2024-05-19 23:45:44 +02:00
commit d7ed922b18
6 changed files with 56 additions and 0 deletions

18
manifest.json Normal file
View file

@ -0,0 +1,18 @@
{
"manifest_version": 3,
"name": "Block Youtube Shorts",
"description": "Blocks the Youtube Short buttons and sections on the main page.",
"version": "1.0",
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": ["https://www.youtube.com/*"],
"js": ["Content.js"]
}
]
}