Groove EQ
Equalize audio, adjust volume, and toggle between mono and stereo within your browser!
Groove EQとは何ですか?
Groove EQはJorgeGiovannettiによって開発されたChromeの拡張機能で、その主な機能は「Equalize audio, adjust volume, and toggle between mono and stereo within your browser!」です。
拡張機能のスクリーンショット
Groove EQ拡張機能のCRXファイルをダウンロード
Groove EQ拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
                        An audio equalizer for your browser! 
Includes:
-12-band parametric EQ
-Up to 3x volume
-Toggle between stereo and mono
Permissions:
-"Read and change all your data on the websites you visit": Allows the extension to modify the audio to your needs.                     拡張機能の基本情報
| 名前 |  | 
| ID | ekbpkpogdfpoaehbngjhfololhjndbdn | 
| 公式URL | https://chromewebstore.google.com/detail/groove-eq/ekbpkpogdfpoaehbngjhfololhjndbdn | 
| 説明 | Equalize audio, adjust volume, and toggle between mono and stereo within your browser! | 
| ファイルサイズ | 25.94 KB | 
| インストール数 | 2,528 | 
| 現在のバージョン | 1.0.2 | 
| 最終更新日 | 2020-03-29 | 
| 公開日 | 2020-03-27 | 
| 評価 | 3.93/5 合計 15 レビュー | 
| 開発者 | JorgeGiovannetti | 
| 支払い方法 | free | 
| 対応言語 | en | 
| manifest.json | |
| {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Groove EQ",
    "version": "1.0.2",
    "description": "Equalize audio, adjust volume, and toggle between mono and stereo within your browser!",
    "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"
        }
    }
} | |