Разработан веб-сервер и расширение для браузеров на базе Chromium

This commit is contained in:
2024-07-26 00:33:19 +03:00
commit beb1559cd4
14 changed files with 490 additions and 0 deletions

23
extension/manifest.json Normal file
View File

@ -0,0 +1,23 @@
{
"name": "YT Music Live",
"description": "YT Music Live",
"version": "1.0",
"manifest_version": 3,
"action": {
"default_icon": "icon.png"
},
"content_scripts": [
{
"js": [
"main.js"
],
"matches": [
"*://music.youtube.com/*"
]
}
],
"permissions": [
"activeTab",
"scripting"
]
}