mirror of
https://github.com/LBRYFoundation/Watch-on-LBRY.git
synced 2025-09-29 14:40:33 +00:00
45 lines
901 B
JSON
45 lines
901 B
JSON
{
|
|
"name": "Watch on LBRY",
|
|
"version": "1.7.0",
|
|
"permissions": [
|
|
"https://www.youtube.com/",
|
|
"https://invidio.us/channel/*",
|
|
"https://invidio.us/watch?v=*",
|
|
"https://api.lbry.com/*",
|
|
"https://lbry.tv/*",
|
|
"tabs",
|
|
"storage"
|
|
],
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"https://www.youtube.com/*"
|
|
],
|
|
"js": [
|
|
"scripts/ytContent.js"
|
|
]
|
|
}
|
|
],
|
|
"background": {
|
|
"scripts": [
|
|
"scripts/storageSetup.js",
|
|
"scripts/tabOnUpdated.js"
|
|
],
|
|
"persistent": false
|
|
},
|
|
"browser_action": {
|
|
"default_title": "Watch on LBRY",
|
|
"default_popup": "popup/popup.html"
|
|
},
|
|
"web_accessible_resources": [
|
|
"popup.html",
|
|
"tools/YTtoLBRY.html",
|
|
"icons/lbry-logo.svg"
|
|
],
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
},
|
|
"manifest_version": 2
|
|
}
|