Volume Mixer

A chrome extension to control volume per tab

ما هو Volume Mixer؟

Volume Mixer هو إضافة Chrome تم تطويرها بواسطة Gagan Bindoria، والميزة الرئيسية لها هي "A chrome extension to control volume per tab".

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

screenshot

تحميل ملف CRX للإضافة Volume Mixer

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

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

                        A simple tool to control volume of each tab with a audio element with easy to use UI.                    

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

الاسم Volume Mixer Volume Mixer
ID ghpkofodokpkakhbdbbeofmnomfikgon
عنوان URL الرسمي https://chromewebstore.google.com/detail/volume-mixer/ghpkofodokpkakhbdbbeofmnomfikgon
الوصف A chrome extension to control volume per tab
حجم الملف 721 KB
عدد التثبيتات 2,849
النسخة الحالية 1.0.3
آخر تحديث 2024-01-19
تاريخ النشر 2021-05-16
تقييم 3.00/5 مجموع تقييمات 10
المطور Gagan Bindoria
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension to control volume per tab",
    "version": "1.0.3",
    "manifest_version": 3,
    "name": "Volume Mixer",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "html2canvas.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png",
                "html2canvas.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}