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

23 lines
516 B
JSON
Raw Normal View History

2018-08-10 01:56:04 +02:00
{
"manifest_version": 2,
"name": "PeerTubeify",
2018-08-11 23:47:46 +02:00
"version": "0.2.2",
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",
2018-08-11 23:47:46 +02:00
"storage",
2018-08-10 01:56:04 +02:00
"<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-11 23:47:46 +02:00
}],
"options_ui": {
"page": "dist/options.html"
}
2018-08-10 01:56:04 +02:00
}