PeerTubeify

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

PeerTubeifyคืออะไร?

PeerTubeify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ealhad และคุณลักษณะหลักของมันคือ "On YouTube, displays a link to the same video on PeerTube, if it exists."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PeerTubeify

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}