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文件
下載Mute Tab Shortcuts擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } } } } |