PeerTubeify

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

PeerTubeify là gì?

PeerTubeify là một tiện ích mở rộng Chrome được phát triển bởi Ealhad, và tính năng chính của nó là "On YouTube, displays a link to the same video on PeerTube, if it exists.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng PeerTubeify

Tải xuống các tệp mở rộng PeerTubeify dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên PeerTubeify PeerTubeify
ID gegmikcnabpilimgelhabaledkcikdab
URL Chính Thức https://chromewebstore.google.com/detail/peertubeify/gegmikcnabpilimgelhabaledkcikdab
Mô tả On YouTube, displays a link to the same video on PeerTube, if it exists.
Kích Thước Tệp 45.8 KB
Số Lần Cài Đặt 234
Phiên Bản Hiện Tại 0.6.0
Cập Nhật Lần Cuối 2019-03-08
Ngày Phát Hành 2019-03-08
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Ealhad
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://gitlab.com/Ealhad/peertubeify
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}