YouTube Volume Scroll Master

Makes the YouTube Volume go woosh when scrolling over the video!

什么是YouTube Volume Scroll Master?

YouTube Volume Scroll Master是由Lukas Oberholzer开发的Chrome扩展程序,该扩展的主要功能是“Makes the YouTube Volume go woosh when scrolling over the video!”。

扩展截图

screenshot

下载YouTube Volume Scroll Master扩展crx文件

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

扩展使用说明

                        YouTube Volume Scroll Master is a small extension designed to simplify changing the volume in YouTube videos.

Scroll over the YouTube video player to increase or decrease its volume by two levels. That's it. That's all this extension can do.

If the extension doesn't work, reload the website. This may be because the website (the video player, to be exact) is taking too long to load and the events are not subscribing to the video player correctly.                    

扩展基本信息

名称 YouTube Volume Scroll Master YouTube Volume Scroll Master
ID pkmkphhocffbdebfbkohpnnaohidfama
官方URL https://chromewebstore.google.com/detail/youtube-volume-scroll-mas/pkmkphhocffbdebfbkohpnnaohidfama
简介 Makes the YouTube Volume go woosh when scrolling over the video!
文件大小 17.63 KB
安装次数 100
当前版本 0.5.0.0
更新时间 2022-04-22
上架时间 2022-04-21
评分 5.00/5 共3次评分
开发者 Lukas Oberholzer
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/LuckLATL/yt-volume-scroll-master
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Volume Scroll Master",
    "version": "0.5.0.0",
    "description": "Makes the YouTube Volume go woosh when scrolling over the video!",
    "short_name": "YtScrollMaster",
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "volumeScroller.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}