PeerTubeify

On YouTube, displays a link to the same video on PeerTube, if it exists.

¿Qué es PeerTubeify?

PeerTubeify es una extensión de Chrome desarrollada por Ealhad, y su función principal es "On YouTube, displays a link to the same video on PeerTube, if it exists.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión PeerTubeify

Descarga archivos de extensión PeerTubeify en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        PeerTubeify allows to redirect between YouTube and PeerTube and across PeerTube instances, automatically or by displaying a link.

If you choose to automatically redirect from YouTube to PeerTube, it uses Invidious (https://invidio.us/) to get the video information without making any requests to YouTube  from your browser, for added privacy.

It uses PeerTube API v1 to search the network (you can choose the instance used for the search). For now, it simply searches for a video with the same title.

Don't forget to set your preferences :)

PeerTubeify is not affiliated with PeerTube.

Code and issues are hosted on GitLab.                    

Información Básica de la Extensión

Nombre PeerTubeify PeerTubeify
ID gegmikcnabpilimgelhabaledkcikdab
URL Oficial https://chromewebstore.google.com/detail/peertubeify/gegmikcnabpilimgelhabaledkcikdab
Descripción On YouTube, displays a link to the same video on PeerTube, if it exists.
Tamaño del Archivo 45.8 KB
Cantidad de Instalaciones 234
Versión Actual 0.6.0
Última Actualización 2019-03-08
Fecha de Publicación 2019-03-08
Calificación 4.00/5 Total de 1 Calificaciones
Desarrollador Ealhad
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://gitlab.com/Ealhad/peertubeify
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PeerTubeify",
    "version": "0.6.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",
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "background": {
        "scripts": [
            "dist\/background.js",
            "dist\/vendors.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.invidio.us\/*"
            ],
            "js": [
                "dist\/youtube.js",
                "dist\/vendors.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*\/videos\/watch\/*"
            ],
            "js": [
                "dist\/peertube.js",
                "dist\/vendors.js"
            ]
        }
    ],
    "options_ui": {
        "page": "dist\/options.html"
    }
}