Youtube Audio Fixer

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

Τι είναι το Youtube Audio Fixer;

Το Youtube Audio Fixer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον purifier.phoenix, και η κύρια λειτουργία του είναι "Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder!".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Youtube Audio Fixer

Λήψη αρχείων επέκτασης Youtube Audio Fixer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Youtube Audio Fixer Youtube Audio Fixer
ID kffimnekdgebaakicpmjkpafgkfejdmi
Επίσημο URL https://chromewebstore.google.com/detail/youtube-audio-fixer/kffimnekdgebaakicpmjkpafgkfejdmi
Περιγραφή Fix audio on the basis that one side(channel) is playing and the other is not, or one is louder!
Μέγεθος Αρχείου 112 KB
Αριθμός Εγκαταστάσεων 1,170
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2019-10-10
Ημερομηνία Δημοσίευσης 2019-10-10
Αξιολόγηση 5.00/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής purifier.phoenix
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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
        }
    ]
}