Youtube Audio Fixer

Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder!

Vad är Youtube Audio Fixer?

Youtube Audio Fixer är en Chrome-tillägg utvecklad av purifier.phoenix, och dess huvudfunktion är "Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder!".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Youtube Audio Fixer-förlängningens CRX-fil

Ladda ner Youtube Audio Fixer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This was created with the sole intention of fixing audio being one-sided or unbalanced, which if wearing headphones creates an annoyance, which this simple extension should remedy.

For Testing See
https://www.youtube.com/watch?v=6TWJaFD6R2s                    

Grundläggande Information om Tillägg

Namn Youtube Audio Fixer Youtube Audio Fixer
ID kffimnekdgebaakicpmjkpafgkfejdmi
Officiell webbadress https://chromewebstore.google.com/detail/youtube-audio-fixer/kffimnekdgebaakicpmjkpafgkfejdmi
Beskrivning Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder!
Filstorlek 112 KB
Antal Installationer 1,170
Aktuell Version 1.0
Senast Uppdaterad 2019-10-10
Publiceringsdatum 2019-10-10
Betyg 5.00/5 Totalt 5 Betyg
Utvecklare purifier.phoenix
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Audio Fixer",
    "description": "Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder!",
    "version": "1.0",
    "manifest_version": 2,
    "icons": {
        "16": "yt16x16.png",
        "32": "yt32x32.png",
        "64": "yt64x64.png",
        "128": "yt128x128.png",
        "256": "yt256x256.png",
        "512": "yt512x512.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery.js",
                "StereoFixer.js"
            ],
            "css": [
                "StereoFixer.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}