1
0
mirror of https://gitlab.com/Cha_deL/peertubeify synced 2025-01-06 11:36:44 +01:00
peertubeify-estensione-fire.../extension/manifest.json
Ealhad 8602c34825 Enable webpack code splitting to drastically reduce package size
4x lodash was a bit too much, I think.
2018-11-04 09:06:02 +01:00

31 lines
765 B
JSON

{
"manifest_version": 2,
"name": "PeerTubeify",
"version": "0.3.0",
"description": "On YouTube, displays a link to the same video on PeerTube, if it exists.",
"homepage_url": "https://gitlab.com/Ealhad/peertubeify",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": [
"activeTab",
"storage",
"<all_urls>"
],
"background": {
"scripts": ["dist/background.js", "dist/vendors.js"]
},
"content_scripts": [{
"matches": ["*://*.youtube.com/*"],
"js": ["dist/youtube.js", "dist/vendors.js"]
}, {
"matches": ["https://*/videos/watch/*"],
"js": ["dist/peertube.js", "dist/vendors.js"]
}],
"options_ui": {
"page": "dist/options.html"
}
}