Youtube Volume Scroll

Enable scrolling mousewheel to control volume on Youtube and Youtube Music

Youtube Volume Scroll là gì?

Youtube Volume Scroll là một tiện ích mở rộng Chrome được phát triển bởi Araxeus, và tính năng chính của nó là "Enable scrolling mousewheel to control volume on Youtube and Youtube Music".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Youtube Volume Scroll

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

                        ★ Display the new volume for 1 second on the video when changing volume
★ Remember volume even in incognito mode
★ Works on youtube.com and music.youtube.com
★ Works in embedded videos (Like in Reddit, WhatsApp, etc.)
★ Clicking the extension icon allows changing the volume scroll 'steps' or overlay style
★ Automatically blocks the "Continue watching?" popup that appears after some time

This extension is open source on GitHub - bug reports / feature requests  / changelogs and more info can be found on the main page at https://github.com/Araxeus/Youtube-Volume-Scroll                    

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

Tên Youtube Volume Scroll Youtube Volume Scroll
ID agadcopafaojndinhloilcanpfpbonbk
URL Chính Thức https://chromewebstore.google.com/detail/youtube-volume-scroll/agadcopafaojndinhloilcanpfpbonbk
Mô tả Enable scrolling mousewheel to control volume on Youtube and Youtube Music
Kích Thước Tệp 54.84 KB
Số Lần Cài Đặt 6,470
Phiên Bản Hiện Tại 3.1.1
Cập Nhật Lần Cuối 2023-04-04
Ngày Phát Hành 2021-09-11
Đánh Giá 4.59/5 Tổng số 34 Đánh Giá
Nhà Phát Triển Araxeus
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Araxeus/Youtube-Volume-Scroll
URL Trang Trợ Giúp https://github.com/Araxeus/Youtube-Volume-Scroll/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Volume Scroll",
    "short_name": "YoutubeVolumeScroll",
    "version": "3.1.1",
    "description": "Enable scrolling mousewheel to control volume on Youtube and Youtube Music",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/music.youtube.com\/*"
            ],
            "all_frames": true,
            "js": [
                "index.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "pageAccess.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/music.youtube.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16x16.png",
        "32": "icons\/icon32x32.png",
        "48": "icons\/BigIcon48x48.png",
        "128": "icons\/BigIcon128x128.png",
        "512": "icons\/BigIcon512x512.png"
    },
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "options_ui": {
        "page": "popup\/popup.html",
        "open_in_tab": false
    },
    "manifest_version": 3
}