Mute Tab Shortcuts
Quickly mute tabs with keyboard shortcuts
Mute Tab Shortcuts란 무엇입니까?
Mute Tab Shortcuts은(는) Daniel Pham에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly mute tabs with keyboard shortcuts"입니다.
확장 프로그램 스크린샷
Mute Tab Shortcuts 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Keyboard shortcuts for muting tabs. Default setup: - Mute/Unmute current tab - Alt + Shift + M - Mute all except current one - Alt+Shift+N - Mute/Unmute all tabs - Alt + Shift + Comma Keybindings can be edited through the "Keyboard Shortcut" menu at the bottom right in the Chrome extension settings. Or past this in the omnibox: chrome://extensions/shortcuts Source Code: https://github.com/danhp/mute-tab-chrome Icon provided by www.72pxdesigns.com ========== CHANGELOG ========== 1.1.0 -> 1.2.0 - Shortcuts now applies to all the windows instead of just the active one. - Merge 'mute/unmute all tabs' to act like a toggle. --- 1.0.0 -> 1.1.0 - Add a shortcut to mute all except the currently selected tab. - Only mute tabs that are currently audible instead of all.
확장 프로그램 기본 정보
이름 | Mute Tab Shortcuts |
ID | opcjanmpjbdbdpnjfjbboacibokblbhl |
공식 URL | https://chromewebstore.google.com/detail/mute-tab-shortcuts/opcjanmpjbdbdpnjfjbboacibokblbhl |
설명 | Quickly mute tabs with keyboard shortcuts |
파일 크기 | 9.84 KB |
설치 횟수 | 46,472 |
현재 버전 | 1.2.0 |
최근 업데이트 | 2021-10-13 |
출시 날짜 | 2019-11-19 |
평점 | 4.09/5 총 155 개의 평점 |
개발자 | Daniel Pham |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/danhp/mute-tab-chrome |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Mute Tab Shortcuts", "version": "1.2.0", "description": "Quickly mute tabs with keyboard shortcuts", "icons": { "16": "imgs\/16.png", "48": "imgs\/48.png", "128": "imgs\/128.png" }, "background": { "persisten": false, "scripts": [ "background.js" ] }, "commands": { "mute_tab_current": { "description": "Mute\/Unmute the selected tab", "suggested_key": { "default": "Alt+Shift+M" } }, "mute_tab_all": { "description": "Mute\/Unmute all audible tabs.", "suggested_key": { "default": "Alt+Shift+Comma" } }, "mute_tab_all_except_current": { "description": "Mute all audible tabs except current", "suggested_key": { "default": "Alt+Shift+N" } } } } |