Volume Mixer

Allows for the changing of individual tab volume

Volume Mixer란 무엇입니까?

Volume Mixer은(는) Nick K에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows for the changing of individual tab volume"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This extension is a simple volume mixer that allows the user to change the volume of individual tabs as well as the master volume of all tabs from a simple popup UI in the right hand corner of the screen. To use, just click on the mixer icon, and select which volume level you wish to set for each tab. 

Note: This extension currently works only with HTML video and audio elements (does not work with Flash). It might be necessary to use another extension to force websites to use HTML5. 

If you find any bugs, or have any feedback in general about this app, email [email protected] and I will try to help you with any issues.                    

확장 프로그램 기본 정보

이름 Volume Mixer Volume Mixer
ID nndlkolppogjamclcghenckmillbpoei
공식 URL https://chrome.google.com/webstore/detail/volume-mixer/nndlkolppogjamclcghenckmillbpoei
설명 Allows for the changing of individual tab volume
파일 크기 94.91 KB
설치 횟수 7,000
현재 버전 1.0
최근 업데이트 2016-05-10
출시 날짜 2016-05-10
평점 1.74/5 총 66 개의 평점
개발자 Nick K
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Volume Mixer",
    "description": "Allows for the changing of individual tab volume",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "volumechange.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ]
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png",
        "256": "icon256.png"
    }
}