YT Remote

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

YT Remote là gì?

YT Remote là một tiện ích mở rộng Chrome được phát triển bởi shraey96, và tính năng chính của nó là "A chrome extension to control your YouTube tabs / playback from any website / tabs.".

Ả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 YT Remote

Tải xuống các tệp mở rộng YT Remote 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

                        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                    

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

Tên YT Remote YT Remote
ID jodpnmokilccncpcgfjpmkhengjhligo
URL Chính Thức https://chromewebstore.google.com/detail/yt-remote/jodpnmokilccncpcgfjpmkhengjhligo
Mô tả A chrome extension to control your YouTube tabs / playback from any website / tabs.
Kích Thước Tệp 337 KB
Số Lần Cài Đặt 949
Phiên Bản Hiện Tại 1.0.6
Cập Nhật Lần Cuối 2020-08-30
Ngày Phát Hành 2020-02-01
Đánh Giá 4.14/5 Tổng số 14 Đánh Giá
Nhà Phát Triển shraey96
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}