20 lines
457 B
JSON
20 lines
457 B
JSON
|
{
|
||
|
"manifest_version": 2,
|
||
|
"name": "PeerTubeify",
|
||
|
"version": "0.1.0",
|
||
|
"description": "On YouTube, displays a link to the same video on PeerTube, if it exists.",
|
||
|
"homepage_url": "https://gitlab.com/Ealhad/peertubeify",
|
||
|
"permissions": [
|
||
|
"activeTab",
|
||
|
"notifications",
|
||
|
"<all_urls>"
|
||
|
],
|
||
|
"background": {
|
||
|
"scripts": ["background.js"]
|
||
|
},
|
||
|
"content_scripts": [{
|
||
|
"matches": ["*://*.youtube.com/*"],
|
||
|
"js": ["youtube.js"]
|
||
|
}]
|
||
|
}
|