Groove EQ

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

ما هو Groove EQ؟

Groove EQ هو إضافة Chrome تم تطويرها بواسطة JorgeGiovannetti، والميزة الرئيسية لها هي "Equalize audio, adjust volume, and toggle between mono and stereo within your browser!".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Groove EQ

قم بتنزيل ملفات الامتداد Groove EQ بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Groove EQ Groove EQ
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"
        }
    }
}