This commit is contained in:
yash 2026-07-19 19:49:22 +03:00
commit 6e9e14a817
3 changed files with 149 additions and 0 deletions

27
manifest.json Normal file
View file

@ -0,0 +1,27 @@
{
"manifest_version": 2,
"name": "Yandex Music Custom Animation",
"version": "1.0.0",
"description": "Replaces Yandex Music animation with a custom video",
"permissions": [
"activeTab",
"webRequest",
"webRequestBlocking",
"*://music.yandex.ru/*",
"*://music.yandex.com/*"
],
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": ["*://music.yandex.ru/*", "*://music.yandex.com/*"],
"js": ["content.js"],
"run_at": "document_idle"
}
],
"icons": {
"48": "icon.png",
"96": "icon.png"
}
}