YT Remote

A chrome extension to control your YouTube tabs / playback from any website / tabs.

YT Remoteคืออะไร?

YT Remote เป็นส่วนขยายของ Chrome ที่พัฒนาโดย shraey96 และคุณลักษณะหลักของมันคือ "A chrome extension to control your YouTube tabs / playback from any website / tabs."

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย YT Remote ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        A simple unique chrome extension to control your YouTube tabs from anywhere in the browser.
Seek, Search, Play, Pause YouTube tracks and also skip video ads from anywhere in your browser


Control your YouTube tab via the extensions keyboard shortcuts:

[SPACE BAR] to play / pause
[CTRL + ARROW LEFT] to seek to previous track
[CTRL + ARROW RIGHT] to seek to next track                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ YT Remote YT Remote
ID jodpnmokilccncpcgfjpmkhengjhligo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/yt-remote/jodpnmokilccncpcgfjpmkhengjhligo
คำอธิบาย A chrome extension to control your YouTube tabs / playback from any website / tabs.
ขนาดไฟล์ 337 KB
จำนวนการติดตั้ง 949
เวอร์ชันปัจจุบัน 1.0.6
อัปเดตครั้งล่าสุด 2020-08-30
วันที่เผยแพร่ 2020-02-01
คะแนน 4.14/5 รวมทั้งหมด 14 คะแนน
ผู้พัฒนา shraey96
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YT Remote",
    "version": "1.0.6",
    "short_name": "YT Remote",
    "description": "A chrome extension to control your YouTube tabs \/ playback from any website \/ tabs.",
    "browser_action": {
        "default_popup": "index.html"
    },
    "permissions": [
        "storage",
        "https:\/\/www.youtube.com\/*"
    ],
    "background": {
        "scripts": [
            "ytBackgroundScript.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "icons-main\/logo_16_c.png",
        "48": "icons-main\/logo_48_c.png",
        "128": "icons-main\/logo_128_c.png"
    },
    "manifest_version": 2
}