peertubeify-estensione-fire.../extension/manifest.json

33 lines
809 B
JSON
Raw Normal View History

2018-08-10 01:56:04 +02:00
{
"manifest_version": 2,
"name": "PeerTubeify",
2018-11-22 16:17:33 +01:00
"version": "0.5.1",
2018-08-10 01:56:04 +02:00
"description": "On YouTube, displays a link to the same video on PeerTube, if it exists.",
"homepage_url": "https://gitlab.com/Ealhad/peertubeify",
2018-08-14 12:42:49 +02:00
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
2018-08-10 01:56:04 +02:00
"permissions": [
"activeTab",
2018-08-11 23:47:46 +02:00
"storage",
"<all_urls>",
"webRequest",
"webRequestBlocking"
2018-08-10 01:56:04 +02:00
],
"background": {
"scripts": ["dist/background.js", "dist/vendors.js"]
2018-08-10 01:56:04 +02:00
},
"content_scripts": [{
"matches": ["*://*.youtube.com/*"],
"js": ["dist/youtube.js", "dist/vendors.js"]
}, {
"matches": ["https://*/videos/watch/*"],
"js": ["dist/peertube.js", "dist/vendors.js"]
2018-08-11 23:47:46 +02:00
}],
"options_ui": {
"page": "dist/options.html"
}
2018-08-10 01:56:04 +02:00
}