YouTube Shorts Volume Control

Allows a convenient slider based UI element for controlling volume in youtube shorts UI

YouTube Shorts Volume Control là gì?

YouTube Shorts Volume Control là một tiện ích mở rộng Chrome được phát triển bởi Priya, và tính năng chính của nó là "Allows a convenient slider based UI element for controlling volume in youtube shorts UI".

Ả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 Shorts Volume Control

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

                        This extension caters to everyone who is searching for a extension to control the volume of youtube shorts in their PC. This functionaility is currently missing on web based UI on laptops and PCs. This extension adds an UI element, as a convenient range slider that helps the user to control the volume of youtube shorts in a fine grained manner. 
Fixed some small bugs.                    

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

Tên YouTube Shorts Volume Control YouTube Shorts Volume Control
ID iocnlgcooancaojnpkonjpcocmcjkgle
URL Chính Thức https://chromewebstore.google.com/detail/youtube-shorts-volume-con/iocnlgcooancaojnpkonjpcocmcjkgle
Mô tả Allows a convenient slider based UI element for controlling volume in youtube shorts UI
Kích Thước Tệp 4.57 KB
Số Lần Cài Đặt 68
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2023-11-25
Ngày Phát Hành 2023-11-23
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Priya
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 Shorts Volume Control",
    "version": "0.0.3",
    "description": "Allows a convenient slider based UI element for controlling volume in youtube shorts UI",
    "permissions": [
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_icon": [],
        "default_title": "Youtube Shorts Vol Control",
        "default_popup": "popup.html"
    },
    "manifest_version": 3
}