PeerTubeify

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

Cos'è PeerTubeify?

PeerTubeify è un'estensione di Chrome sviluppata da Ealhad, e la sua funzione principale è "On YouTube, displays a link to the same video on PeerTube, if it exists.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione PeerTubeify

Scarica i file di estensione PeerTubeify in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome PeerTubeify PeerTubeify
ID gegmikcnabpilimgelhabaledkcikdab
URL Ufficiale https://chromewebstore.google.com/detail/peertubeify/gegmikcnabpilimgelhabaledkcikdab
Descrizione On YouTube, displays a link to the same video on PeerTube, if it exists.
Dimensione del File 45.8 KB
Conteggio Installazioni 234
Versione Corrente 0.6.0
Ultimo Aggiornamento 2019-03-08
Data di Pubblicazione 2019-03-08
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore Ealhad
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://gitlab.com/Ealhad/peertubeify
Lingue Supportate 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"
    }
}