Tab Volume
Volume control within a browser tab
Tab Volume란 무엇입니까?
Tab Volume은(는) wokalek에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Volume control within a browser tab"입니다.
확장 프로그램 스크린샷
Tab Volume 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A convenient and eye-pleasing extension for controlling the sound volume in a browser tab. 🍙 Increase or decrease volume within a browser tab 🍥 Set any upper limit for audio volume scaling 🍣 List of tabs on which you have changed the volume for easy switching between them 🍤 Restore tab volume with one click 🍢 Change volume with hotkeys Ctrl + Shift + ArrowUp/ArrowDown The extension is completely free and open source. The link to the code can be found in "Settings" under the "About extension" button.
확장 프로그램 기본 정보
이름 | Tab Volume |
ID | nfconmpaofmnebmmnoinlbgfocaimkah |
공식 URL | https://chromewebstore.google.com/detail/tab-volume/nfconmpaofmnebmmnoinlbgfocaimkah |
설명 | Volume control within a browser tab |
파일 크기 | 73.1 KB |
설치 횟수 | 152 |
현재 버전 | 1.0.5 |
최근 업데이트 | 2024-03-03 |
출시 날짜 | 2023-08-18 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | wokalek |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/wokalek/tab-volume |
도움말 페이지 URL | https://github.com/wokalek/tab-volume/issues/new |
지원되는 언어 | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_manifest_name__", "version": "1.0.5", "default_locale": "en", "description": "__MSG_manifest_description__", "author": "[email protected]", "minimum_chrome_version": "116", "icons": { "16": "favicons\/16.png", "32": "favicons\/32.png", "48": "favicons\/48.png", "128": "favicons\/128.png" }, "permissions": [ "activeTab", "tabCapture", "offscreen", "storage" ], "action": { "default_popup": "src\/pages\/popup.html" }, "background": { "service_worker": "service-worker-loader.js", "type": "module" }, "commands": { "VOLUME_UP": { "description": "__MSG_manifest_commands_volume_up__", "suggested_key": { "default": "Ctrl+Shift+Up" } }, "VOLUME_DOWN": { "description": "__MSG_manifest_commands_volume_down__", "suggested_key": { "default": "Ctrl+Shift+Down" } } } } |