KastEQ

Equalize audio, adjust volume, and toggle between mono and stereo within Chrome.

KastEQとは何ですか?

KastEQはmytchによって開発されたChromeの拡張機能で、その主な機能は「Equalize audio, adjust volume, and toggle between mono and stereo within Chrome.」です。

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

screenshot

KastEQ拡張機能のCRXファイルをダウンロード

KastEQ拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Equalize audio, adjust volume, and toggle between mono and stereo within Chrome.                    

拡張機能の基本情報

名前 KastEQ KastEQ
ID mekgegicpljkcloadfloekmmggckfpch
公式URL https://chromewebstore.google.com/detail/kasteq/mekgegicpljkcloadfloekmmggckfpch
説明 Equalize audio, adjust volume, and toggle between mono and stereo within Chrome.
ファイルサイズ 19.68 KB
インストール数 30
現在のバージョン 1.0.0
最終更新日 2020-10-24
公開日 2020-10-23
評価 5.00/5 合計 1 レビュー
開発者 mytch
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "KastEQ",
    "version": "1.0.0",
    "description": "Equalize audio, adjust volume, and toggle between mono and stereo within Chrome.",
    "permissions": [
        "tabCapture"
    ],
    "icons": {
        "16": "logo\/logo16.png",
        "32": "logo\/logo32.png",
        "64": "logo\/logo64.png",
        "128": "logo\/logo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "logo\/logo16.png",
            "32": "logo\/logo32.png",
            "64": "logo\/logo64.png",
            "128": "logo\/logo128.png"
        }
    }
}