Youtube Volume Scroll

Enable scrolling mousewheel to control volume on Youtube and Youtube Music

什么是Youtube Volume Scroll?

Youtube Volume Scroll是由Araxeus开发的Chrome扩展程序,该扩展的主要功能是“Enable scrolling mousewheel to control volume on Youtube and Youtube Music”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Youtube Volume Scroll扩展crx文件

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

扩展使用说明

                        ★ 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                    

扩展基本信息

名称 Youtube Volume Scroll Youtube Volume Scroll
ID agadcopafaojndinhloilcanpfpbonbk
官方URL https://chromewebstore.google.com/detail/youtube-volume-scroll/agadcopafaojndinhloilcanpfpbonbk
简介 Enable scrolling mousewheel to control volume on Youtube and Youtube Music
文件大小 54.84 KB
安装次数 6,470
当前版本 3.1.1
更新时间 2023-04-04
上架时间 2021-09-11
评分 4.59/5 共34次评分
开发者 Araxeus
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/Araxeus/Youtube-Volume-Scroll
帮助页面URL https://github.com/Araxeus/Youtube-Volume-Scroll/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc
支持的语言 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
}