nikita.ym/manifest.json

33 lines
729 B
JSON
Raw Normal View History

2026-07-19 19:49:22 +03:00
{
"manifest_version": 2,
2026-07-21 14:17:32 +03:00
"name": "Yandex Music Upgrade",
2026-07-19 19:49:22 +03:00
"version": "1.0.0",
2026-07-21 14:17:32 +03:00
"description": "Replaces boring Yandex Music animation",
"browser_specific_settings": {
"gecko": {
"id": "yandex-music-upgrade@nikita.ym",
"strict_min_version": "91.0",
"data_collection_permissions": {
"required": ["none"]
}
}
},
2026-07-19 19:49:22 +03:00
"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"
}
2026-07-21 14:17:32 +03:00
]
2026-07-19 19:49:22 +03:00
}