First Commit, Code by Claude 4.7 Opus

This commit is contained in:
Tronax 2026-05-15 21:14:06 +02:00
commit 77972c36bd
6 changed files with 319 additions and 0 deletions

20
manifest.json Normal file
View file

@ -0,0 +1,20 @@
{
"manifest_version": 3,
"name": "YT Windowed Fullscreen",
"author": "Tronax mail@tronax.dev",
"version": "2.0",
"description": "Windowed Fullscreen Button kompatibel mit altem & neuem YouTube UI",
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"content_scripts": [
{
"matches": ["https://www.youtube.com/*"],
"js": ["content.js"],
"run_at": "document_idle"
}
]
}