Tab Volume

Volume control within a browser tab

Tab Volumeとは何ですか?

Tab Volumeはwokalekによって開発されたChromeの拡張機能で、その主な機能は「Volume control within a browser tab」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

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.                    

拡張機能の基本情報

名前 Tab Volume 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
Eメール [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"
            }
        }
    }
}