PeerTubeify

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

PeerTubeifyとは何ですか?

PeerTubeifyはEalhadによって開発されたChromeの拡張機能で、その主な機能は「On YouTube, displays a link to the same video on PeerTube, if it exists.」です。

拡張機能のスクリーンショット

screenshot

PeerTubeify拡張機能のCRXファイルをダウンロード

PeerTubeify拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 PeerTubeify PeerTubeify
ID gegmikcnabpilimgelhabaledkcikdab
公式URL https://chromewebstore.google.com/detail/peertubeify/gegmikcnabpilimgelhabaledkcikdab
説明 On YouTube, displays a link to the same video on PeerTube, if it exists.
ファイルサイズ 45.8 KB
インストール数 234
現在のバージョン 0.6.0
最終更新日 2019-03-08
公開日 2019-03-08
評価 4.00/5 合計 1 レビュー
開発者 Ealhad
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://gitlab.com/Ealhad/peertubeify
対応言語 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"
    }
}