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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        ★ 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
}