PeerTubeify

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

Co to jest PeerTubeify?

PeerTubeify to rozszerzenie Chrome opracowane przez Ealhad, a jego główną funkcją jest „On YouTube, displays a link to the same video on PeerTube, if it exists.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia PeerTubeify

Pobierz pliki rozszerzeń PeerTubeify w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa PeerTubeify PeerTubeify
ID gegmikcnabpilimgelhabaledkcikdab
Oficjalny URL https://chromewebstore.google.com/detail/peertubeify/gegmikcnabpilimgelhabaledkcikdab
Opis On YouTube, displays a link to the same video on PeerTube, if it exists.
Rozmiar pliku 45.8 KB
Liczba instalacji 234
Aktualna Wersja 0.6.0
Ostatnia Aktualizacja 2019-03-08
Data Publikacji 2019-03-08
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper Ealhad
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://gitlab.com/Ealhad/peertubeify
Obsługiwane Języki 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"
    }
}