Volume Manager

Manage the volume of each tab

Volume Manager란 무엇입니까?

Volume Manager은(는) zhangbohun에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Manage the volume of each tab"입니다.

확장 프로그램 스크린샷

screenshot

Volume Manager 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Support Chrome browser Native and H5 two modes to control  volume
H5 mode, which can automatically remember the previous volume configuration, but only supports HTML5 standard audio and video
Browser Native mode, support for Flash and other multimedia , automatic configuration cannot be implemented due to the limitations of the Chrome browser (the configuration can be loaded after manually opening the extension page)                    

확장 프로그램 기본 정보

이름 Volume Manager Volume Manager
ID ogpbjlhpdjmcbkocjibemdmblffnfkmm
공식 URL https://chromewebstore.google.com/detail/volume-manager/ogpbjlhpdjmcbkocjibemdmblffnfkmm
설명 Manage the volume of each tab
파일 크기 31.93 KB
설치 횟수 10,654
현재 버전 0.1.9
최근 업데이트 2022-11-15
출시 날짜 2020-04-15
평점 3.94/5 총 17 개의 평점
개발자 zhangbohun
이메일 [email protected]
결제 유형 free
지원되는 언어 en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "icons": {
        "128": "img\/icon.png"
    },
    "version": "0.1.9",
    "offline_enabled": true,
    "permissions": [
        "activeTab",
        "tabs",
        "tabCapture"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_title": "__MSG_name__",
        "default_icon": "img\/icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/volumeManager.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "manifest_version": 2,
    "default_locale": "en"
}