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
Eメール [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
}