Mute Other Tabs

Smart Mute other tabs automatically even without clicking.

Mute Other Tabs란 무엇입니까?

Mute Other Tabs은(는) ugurkaya88에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Smart Mute other tabs automatically even without clicking."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Mute Other Tabs 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        'Smart Mute' other tabs automatically even without clicking. 

It is irritating to have multiple tabs playing audio in the background and you can't even find out where that sound comes from.

This extension handles this for you automatically and you don't even need to do anything else but installing the extension.

If you want to control the behaviour of the extension, you can simple use the extension popup user interface;
* to change smart mute behaviour
* to mute / unmute other tabs

or you can use the predefined shortcuts for muting and unmuting.

Mute:
* CTRL + SHIFT + I
* COMMAND + SHIFT + I

Unmute:
* CTRL + SHIFT + U
* COMMAND + SHIFT + U                    

확장 프로그램 기본 정보

이름 Mute Other Tabs Mute Other Tabs
ID pcdkbmcaonbomnccedjcgjmafdocojen
공식 URL https://chrome.google.com/webstore/detail/mute-other-tabs/pcdkbmcaonbomnccedjcgjmafdocojen
설명 Smart Mute other tabs automatically even without clicking.
파일 크기 781 KB
설치 횟수 145
현재 버전 0.0.11
최근 업데이트 2018-08-24
출시 날짜 2018-08-24
평점 3.00/5 총 2 개의 평점
개발자 ugurkaya88
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://gitlab.com/ugurkaya88/chrome-mute-other-tabs
도움말 페이지 URL https://gitlab.com/ugurkaya88/chrome-mute-other-tabs
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mute Other Tabs",
    "short_name": "Mute Others",
    "version": "0.0.11",
    "description": "Smart Mute other tabs automatically even without clicking.",
    "author": "U\u011fur Kaya",
    "homepage_url": "https:\/\/gitlab.com\/ugurkaya88\/chrome-mute-other-tabs",
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "images\/icon_16x16.png",
            "32": "images\/icon_32x32.png",
            "48": "images\/icon_48x48.png",
            "128": "images\/icon_128x128.png"
        }
    },
    "commands": {
        "mute-others": {
            "suggested_key": {
                "default": "Ctrl+Shift+I",
                "mac": "Command+Shift+I"
            },
            "description": "Mute other tabs"
        },
        "unmute-others": {
            "suggested_key": {
                "default": "Ctrl+Shift+U",
                "mac": "Command+Shift+U"
            },
            "description": "Unmute other tabs"
        }
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "shared\/shared.js",
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "images\/icon_16x16.png",
        "32": "images\/icon_32x32.png",
        "48": "images\/icon_48x48.png",
        "128": "images\/icon_128x128.png"
    },
    "manifest_version": 2
}