Volume Booster for YouTube™

Increase the volume of the YouTube™ player twice, resembling the VLC player

Volume Booster for YouTube™ क्या है?

Volume Booster for YouTube™ MeryDev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Increase the volume of the YouTube™ player twice, resembling the VLC player"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Volume Booster for YouTube™ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        The Volume Booster extension is a tool designed to enhance the audio output of supported media players. Whether you're watching videos or listening to music, this extension aims to elevate your audio experience by boosting the volume level beyond the standard limitations with greater clarity and impact.

The extension installs a "2x" button next to the settings button of the YouTube player. It is disabled by default. If the user clicks the button once, the audio gain node is installed on the source node, causing the audio volume to increase level twice (200%; similar to VLC player). You can click the button once more to deactivate the boosting.

Note:
The compatibility of this extension with your audio equalizer extension may vary. Its compatibility is dependent on the method used by the equalizer to perform audio filtering, whether it is applied directly to the player (not compatible) or to the page itself (compatible).

This extension supports volume boosting with keyboard shortcuts. Read the FAQs page for more info                    

एक्सटेंशन की मूल जानकारी

नाम Volume Booster for YouTube™ Volume Booster for YouTube™
ID camciclnnglajljifpjocnpmepnkajgi
आधिकारिक URL https://chromewebstore.google.com/detail/volume-booster-for-youtub/camciclnnglajljifpjocnpmepnkajgi
विवरण Increase the volume of the YouTube™ player twice, resembling the VLC player
फ़ाइल का आकार 87.95 KB
स्थापना संख्या 7,000
वर्तमान संस्करण 0.1.4
अंतिम अपडेट 2024-02-19
प्रकाशन तिथि 2023-06-24
रेटिंग 5.00/5 कुल 22 रेटिंग्स
डेवलपर MeryDev
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://webextension.org/listing/volume-booster.html?from=youtube
सहायता पृष्ठ URL https://webextension.org/listing/volume-booster.html?from=youtube
गोपनीयता नीति पृष्ठ URL https://add0n.com/policies/mery.dev.txt
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Volume Booster for YouTube\u2122",
    "description": "Increase the volume of the YouTube\u2122 player twice, resembling the VLC player",
    "version": "0.1.4",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/www.youtube.com\/*"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "\/data\/inject.js"
            ],
            "css": [
                "\/data\/inject.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "homepage_url": "https:\/\/webextension.org\/listing\/volume-booster.html?from=youtube",
    "icons": {
        "16": "\/data\/icons\/16.png",
        "32": "\/data\/icons\/32.png",
        "48": "\/data\/icons\/48.png",
        "64": "\/data\/icons\/64.png",
        "128": "\/data\/icons\/128.png",
        "256": "\/data\/icons\/256.png",
        "512": "\/data\/icons\/512.png"
    },
    "commands": {
        "boost-2x": {
            "description": "toggle and adjust 2x boosting"
        },
        "boost-3x": {
            "description": "toggle and adjust 3x boosting"
        },
        "boost-4x": {
            "description": "toggle and adjust 4x boosting"
        }
    }
}