Groove EQ

Equalize audio, adjust volume, and toggle between mono and stereo within your browser!

What is Groove EQ?

Groove EQ is a Chrome extension developed by JorgeGiovannetti, and its main feature is "Equalize audio, adjust volume, and toggle between mono and stereo within your browser!".

Extension Screenshots

screenshot
screenshot
screenshot

Download Groove EQ Extension CRX File

Download Groove EQ extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Groove EQ Groove EQ
ID ekbpkpogdfpoaehbngjhfololhjndbdn
Official URL https://chromewebstore.google.com/detail/groove-eq/ekbpkpogdfpoaehbngjhfololhjndbdn
Description Equalize audio, adjust volume, and toggle between mono and stereo within your browser!
File Size 25.94 KB
Installation Count 2,528
Current Version 1.0.2
Last Updated 2020-03-29
Publish Date 2020-03-27
Rating 3.93/5 Total 15 Ratings
Developer JorgeGiovannetti
Payment Type free
Supported Languages 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"
        }
    }
}