YouTube Volume Fix

This Chrome extension listens for the "onvolumechange" event on YouTube and doubles the what YouTube is setting the volume to for a…

ما هو YouTube Volume Fix؟

YouTube Volume Fix هو إضافة Chrome تم تطويرها بواسطة Connor Linfoot، والميزة الرئيسية لها هي "This Chrome extension listens for the "onvolumechange" event on YouTube and doubles the what YouTube is setting the volume to for a…".

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

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

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

                        This Chrome extension listens for the "onvolumechange" event on YouTube and doubles the what YouTube is setting the volume to for a more accurate volume output.                    

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

الاسم YouTube Volume Fix YouTube Volume Fix
ID okocpealpliblhljcgldklklkifaoioa
عنوان URL الرسمي https://chrome.google.com/webstore/detail/youtube-volume-fix/okocpealpliblhljcgldklklkifaoioa
الوصف This Chrome extension listens for the "onvolumechange" event on YouTube and doubles the what YouTube is setting the volume to for a…
حجم الملف 14.8 KB
عدد التثبيتات 39
النسخة الحالية 1.0.2
آخر تحديث 2017-06-20
تاريخ النشر 2017-06-20
تقييم 2.00/5 مجموع تقييمات 4
المطور Connor Linfoot
نوع الدفع free
اللغات المدعومة en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Volume Fix",
    "version": "1.0.2",
    "minimum_chrome_version": "18",
    "manifest_version": 2,
    "description": "",
    "icons": {
        "16": "\/images\/icon16.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest"
    ],
    "content_scripts": [
        {
            "all_frames": false,
            "run_at": "document_end",
            "js": [
                "youtube-volume-fix.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}