Mute Noisy Tabs
Toggles the mute for audible tabs. Kills the muted tabs, if desired.
Mute Noisy Tabs란 무엇입니까?
Mute Noisy Tabs은(는) PS에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Toggles the mute for audible tabs. Kills the muted tabs, if desired."입니다.
Mute Noisy Tabs 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The extension helps manage the tabs which are audible (producing sound). You can use the extension to mute/unmute all the tabs which are audible. These tabs can also be closed, if desired. Usage: - Click the extension button to toggle the mute status for the audible tabs. - Alternatively, use the keyboard shortcut 'Ctrl+M' (or 'Command+M') to toggle the mute/unmute status. - To close all muted tabs, press 'Ctrl+Shift+Comma' (or 'Command+Shift+Comma'). - To close all audible tabs, press 'Ctrl+Shift+Comma' twice.
확장 프로그램 기본 정보
이름 | Mute Noisy Tabs |
ID | dopffpdmflkogolakidlgbnonnbelmlg |
공식 URL | https://chromewebstore.google.com/detail/mute-noisy-tabs/dopffpdmflkogolakidlgbnonnbelmlg |
설명 | Toggles the mute for audible tabs. Kills the muted tabs, if desired. |
파일 크기 | 27.33 KB |
설치 횟수 | 26 |
현재 버전 | 0.1 |
최근 업데이트 | 2016-03-21 |
출시 날짜 | 2016-03-21 |
개발자 | PS |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Mute Noisy Tabs", "description": "Toggles the mute for audible tabs. Kills the muted tabs, if desired.", "version": "0.1", "browser_action": { "default_icon": "soundOn.png" }, "background": { "scripts": [ "eventpage.js" ], "persistent": false }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+M", "mac": "Command+M" }, "description": "Simulates the standard browser action button click." }, "killAudibleTabs": { "suggested_key": { "default": "Ctrl+Shift+Comma", "mac": "Command+Shift+Comma" }, "description": "Kills the muted tabs." } }, "permissions": [ "tabs" ], "offline_enabled": true } |