2024-07-26 00:33:19 +03:00
|
|
|
{
|
|
|
|
"manifest_version": 3,
|
2024-07-27 23:39:28 +03:00
|
|
|
"name": "YT Music Live",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "__MSG_description__",
|
|
|
|
"icons": {
|
|
|
|
"16": "/images/icon/16x16.png",
|
|
|
|
"48": "/images/icon/48x48.png",
|
|
|
|
"128": "/images/icon/128x128.png"
|
|
|
|
},
|
2024-07-26 00:33:19 +03:00
|
|
|
"action": {
|
2024-07-27 23:39:28 +03:00
|
|
|
"default_popup": "/main.html"
|
2024-07-26 00:33:19 +03:00
|
|
|
},
|
2024-07-27 23:39:28 +03:00
|
|
|
"author": "csasq@csasq.ru",
|
2024-07-26 00:33:19 +03:00
|
|
|
"content_scripts": [
|
|
|
|
{
|
|
|
|
"js": [
|
2024-07-27 23:39:28 +03:00
|
|
|
"/scripts/observer.js"
|
2024-07-26 00:33:19 +03:00
|
|
|
],
|
|
|
|
"matches": [
|
|
|
|
"*://music.youtube.com/*"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
2024-07-27 23:39:28 +03:00
|
|
|
"default_locale": "en",
|
|
|
|
"incognito": "not_allowed",
|
2024-07-26 00:33:19 +03:00
|
|
|
"permissions": [
|
|
|
|
"activeTab",
|
2024-07-27 23:39:28 +03:00
|
|
|
"scripting",
|
|
|
|
"storage"
|
|
|
|
],
|
|
|
|
"storage": {
|
|
|
|
"managed_schema": "/storage-schema.json"
|
|
|
|
}
|
2024-07-26 00:33:19 +03:00
|
|
|
}
|