init
This commit is contained in:
commit
6e9e14a817
3 changed files with 149 additions and 0 deletions
27
manifest.json
Normal file
27
manifest.json
Normal 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"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue