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

23 lines
516 B
JSON

{
"manifest_version": 2,
"name": "PeerTubeify",
"version": "0.2.2",
"description": "On YouTube, displays a link to the same video on PeerTube, if it exists.",
"homepage_url": "https://gitlab.com/Ealhad/peertubeify",
"permissions": [
"activeTab",
"storage",
"<all_urls>"
],
"background": {
"scripts": ["dist/background.js"]
},
"content_scripts": [{
"matches": ["*://*.youtube.com/*"],
"js": ["dist/youtube.js"]
}],
"options_ui": {
"page": "dist/options.html"
}
}