mirror of
https://github.com/LBRYFoundation/Watch-on-LBRY.git
synced 2025-08-23 17:47:26 +00:00
55 lines
No EOL
1.5 KiB
JSON
55 lines
No EOL
1.5 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Watch on LBRY",
|
|
"version": "2.0.0",
|
|
"icons": {
|
|
"16": "assets/icons/wol/icon16.png",
|
|
"48": "assets/icons/wol/icon48.png",
|
|
"128": "assets/icons/wol/icon128.png"
|
|
},
|
|
"permissions": [
|
|
"https://www.youtube.com/",
|
|
"https://yewtu.be/",
|
|
"https://vid.puffyan.us/",
|
|
"https://invidio.xamh.de/",
|
|
"https://invidious.kavin.rocks/",
|
|
"https://api.odysee.com/",
|
|
"https://lbry.tv/",
|
|
"https://odysee.com/",
|
|
"https://madiator.com/",
|
|
"https://finder.madiator.com/",
|
|
"storage"
|
|
],
|
|
"web_accessible_resources": [
|
|
"pages/popup/index.html",
|
|
"pages/YTtoLBRY/index.html",
|
|
"pages/import/index.html",
|
|
"assets/icons/lbry/lbry-logo.svg",
|
|
"assets/icons/lbry/odysee-logo.svg",
|
|
"assets/icons/lbry/madiator-logo.svg"
|
|
],
|
|
"browser_action": {
|
|
"default_title": "Watch on LBRY",
|
|
"default_popup": "pages/popup/index.html"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"https://www.youtube.com/*",
|
|
"https://yewtu.be/*",
|
|
"https://vid.puffyan.us/*",
|
|
"https://invidio.xamh.de/*",
|
|
"https://invidious.kavin.rocks/*"
|
|
],
|
|
"js": [
|
|
"scripts/ytContent.js"
|
|
]
|
|
}
|
|
],
|
|
"background": {
|
|
"scripts": [
|
|
"service-worker-entry-point.js"
|
|
],
|
|
"persistent": true
|
|
}
|
|
} |