27 lines
595 B
JSON
27 lines
595 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|