Tab Volume
Volume control within a browser tab
什麼是Tab Volume?
Tab Volume是由wokalek開發的Chrome擴展程式,該擴展的主要功能是“Volume control within a browser tab”。
擴展截圖
下載Tab Volume擴展crx文件
下載Tab Volume擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | nfconmpaofmnebmmnoinlbgfocaimkah |
| 官方網址 | 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"
}
}
}
} | |