Youtube Volume Scroll

Enable scrolling mousewheel to control volume on Youtube and Youtube Music

Что такое Youtube Volume Scroll?

Youtube Volume Scroll - это расширение Chrome, разработанное Araxeus, и его основная функция - "Enable scrolling mousewheel to control volume on Youtube and Youtube Music".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Youtube Volume Scroll

Скачайте файлы расширений 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
}