YouTube TV Volume control

Runs on Youtube.com/TV and adds volume control to the player controls panel

什么是YouTube TV Volume control?

YouTube TV Volume control是由Anton Shashok开发的Chrome扩展程序,该扩展的主要功能是“Runs on Youtube.com/TV and adds volume control to the player controls panel”。

扩展截图

screenshot

下载YouTube TV Volume control扩展crx文件

下载YouTube TV Volume control扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Version 1.0.2.4
Removed Extra host loading. Added some design.

Version 0.9.8.1
New Youtube App support

Version 0.8.1
Fix: Your Device Type is no longer supported.

Version 0.7.5
YouTube update fix

Version 0.7.2
Position fix

Version 0.7.1 

Now you can use + / - keys to control volume!

Due to changes made to YouTube TV. It needs to be updated.
Enjoy!                    

扩展基本信息

名称 YouTube TV Volume control YouTube TV Volume control
ID mpkdmnddeijnncnnbmoilipjadjhnidd
官方URL https://chromewebstore.google.com/detail/youtube-tv-volume-control/mpkdmnddeijnncnnbmoilipjadjhnidd
简介 Runs on Youtube.com/TV and adds volume control to the player controls panel
文件大小 73.77 KB
安装次数 1,237
当前版本 1.0.2.4
更新时间 2020-12-28
上架时间 2020-06-22
评分 3.64/5 共14次评分
开发者 Anton Shashok
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube TV Volume control",
    "version": "1.0.2.4",
    "description": "Runs on Youtube.com\/TV and adds volume control to the player controls panel",
    "manifest_version": 2,
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [],
    "browser_action": {
        "default_icon": "img\/icon-19-grey.png",
        "default_title": "YouTubeTVPanel",
        "icons": {
            "48": "img\/icon-48.png",
            "19": "img\/icon-19-grey.png",
            "128": "img\/icon-128.png"
        }
    },
    "icons": {
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "permissions": [
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*.youtube.com\/*",
        "*:\/\/youtube.com\/tv"
    ]
}