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
官方網址 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
電子郵箱 [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"
    }
}