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

19 lines
446 B
JSON
Raw Normal View History

2018-08-10 01:56:04 +02:00
{
"manifest_version": 2,
"name": "PeerTubeify",
2018-08-11 00:30:23 +02:00
"version": "0.2.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",
"permissions": [
"activeTab",
"<all_urls>"
],
"background": {
"scripts": ["dist/background.js"]
2018-08-10 01:56:04 +02:00
},
"content_scripts": [{
"matches": ["*://*.youtube.com/*"],
"js": ["dist/youtube.js"]
2018-08-10 01:56:04 +02:00
}]
}