YouTube TV Volume control

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

YouTube TV Volume control là gì?

YouTube TV Volume control là một tiện ích mở rộng Chrome được phát triển bởi Anton Shashok, và tính năng chính của nó là "Runs on Youtube.com/TV and adds volume control to the player controls panel".

Ả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 YouTube TV Volume control

Tải xuống các tệp mở rộng YouTube TV Volume control 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

                        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!                    

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

Tên YouTube TV Volume control YouTube TV Volume control
ID mpkdmnddeijnncnnbmoilipjadjhnidd
URL Chính Thức https://chromewebstore.google.com/detail/youtube-tv-volume-control/mpkdmnddeijnncnnbmoilipjadjhnidd
Mô tả Runs on Youtube.com/TV and adds volume control to the player controls panel
Kích Thước Tệp 73.77 KB
Số Lần Cài Đặt 1,237
Phiên Bản Hiện Tại 1.0.2.4
Cập Nhật Lần Cuối 2020-12-28
Ngày Phát Hành 2020-06-22
Đánh Giá 3.64/5 Tổng số 14 Đánh Giá
Nhà Phát Triển Anton Shashok
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": "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"
    ]
}