YT Remote

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

什么是YT Remote?

YT Remote是由shraey96开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension to control your YouTube tabs / playback from any website / tabs.”。

扩展截图

screenshot

下载YT Remote扩展crx文件

下载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
}