unMute
Manually/Automatically Mute Your Tabs for Google Chrome.
unMute란 무엇입니까?
unMute은(는) unFace에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Manually/Automatically Mute Your Tabs for Google Chrome."입니다.
확장 프로그램 스크린샷
unMute 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
## Features - Mute/unMute Current Tab - Auto Mute All Tabs except Current/Recent-Audible/Specified Tab - Always Mute All Tabs - Toggle state All Tabs - Change User Button Action ## ChangeLog - V2 - 2.0.1: Fix action badge color to be visible - 2.0.0: Fix all known issues - Legacy - 1.8: Add auto mute all tabs except the specified tab - 1.7: Add always mute all tabs - 1.6: Add option for user action button - 1.5: Add changelog page and notification - 1.4: Add auto mute all tabs except the recent-audible tab - 1.3: Add options page - 1.2: Add auto mute all tabs except the current tab - 1.1: Add context menus - 1.0: Initial release ## Known Issues - ## ToDo - improve Options UI - and more...
확장 프로그램 기본 정보
이름 | unMute |
ID | lfedioibcednammacdoioeonimdbpige |
공식 URL | https://chromewebstore.google.com/detail/unmute/lfedioibcednammacdoioeonimdbpige |
설명 | Manually/Automatically Mute Your Tabs for Google Chrome. |
파일 크기 | 30.22 KB |
설치 횟수 | 3,354 |
현재 버전 | 2.0.1 |
최근 업데이트 | 2022-07-14 |
출시 날짜 | 2020-03-13 |
평점 | 4.86/5 총 29 개의 평점 |
개발자 | unFace |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/jnosis/unMute |
지원되는 언어 | en,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extensionName__", "version": "2.0.1", "default_locale": "en", "icons": { "16": "\/icons\/icon16.png", "32": "\/icons\/icon32.png", "48": "\/icons\/icon48.png", "128": "\/icons\/icon128.png" }, "browser_action": { "default_icon": { "16": "\/icons\/icon16.png", "32": "\/icons\/icon32.png", "48": "\/icons\/icon48.png", "128": "\/icons\/icon128.png" } }, "background": { "page": "background.html" }, "permissions": [ "storage", "contextMenus", "notifications" ], "description": "__MSG_extensionDescription__", "version_name": "2.0.1", "minimum_chrome_version": "92", "commands": { "muteCurrentTab": { "suggested_key": { "default": "Alt+M" }, "description": "__MSG_command_muteCurrentTab__" }, "autoMute": { "suggested_key": { "default": "Alt+A" }, "description": "__MSG_command_autoMute__" }, "autoMode": { "description": "__MSG_command_autoMode__" }, "fixTab": { "description": "__MSG_command_fixTab__" }, "toggleAllTabs": { "suggested_key": { "default": "Alt+Shift+M" }, "description": "__MSG_command_toggleAllTabs__" } }, "options_ui": { "page": "options.html" } } |