Volume Manager

Control any tab's volume separately

ما هو Volume Manager؟

Volume Manager هو إضافة Chrome تم تطويرها بواسطة coherence، والميزة الرئيسية لها هي "Control any tab's volume separately".

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

screenshot

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

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

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

                        An open-source plugin to control any tab's volume separately.

Do note that once you started modifying volume:
- You cannot toggle fullscreen of this tab. This is due to the Chrome API limitation.
- Your system may not go into sleep/suspend/monitor off because Chrome will mark the current tab is "capturing" and inhibit doing so.

Source code: https://github.com/cjc7373/chrome-volume-manager                    

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

الاسم Volume Manager Volume Manager
ID imhcgcnjkibjikdbdgnhclihigkooeaf
عنوان URL الرسمي https://chromewebstore.google.com/detail/volume-manager/imhcgcnjkibjikdbdgnhclihigkooeaf
الوصف Control any tab's volume separately
حجم الملف 171 KB
عدد التثبيتات 617
النسخة الحالية 2.0.0
آخر تحديث 2023-11-18
تاريخ النشر 2021-03-05
تقييم 4.83/5 مجموع تقييمات 6
المطور coherence
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/cjc7373/chrome-volume-manager
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Volume Manager",
    "version": "2.0.0",
    "description": "Control any tab's volume separately",
    "permissions": [
        "activeTab",
        "tabCapture",
        "offscreen"
    ],
    "action": {
        "default_icon": "icon.e84ebc53.png",
        "default_popup": "popup.c91b8cbb.html"
    },
    "background": {
        "service_worker": "background.538a6b63.js"
    },
    "icons": {
        "512": "icon.e84ebc53.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "offscreen.html"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ]
}