StereoToMono

This extension monofies the currently playing video or audio source with a single click on the extension button.

Τι είναι το StereoToMono;

Το StereoToMono είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον no9, και η κύρια λειτουργία του είναι "This extension monofies the currently playing video or audio source with a single click on the extension button.".

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

screenshot
screenshot

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

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

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

                        The StereoToMono extension is useful if you want to listen to the video or audio you are currently watching in mono. It combines the left speaker's content with the right speaker's and vice versa, so you effectively hear the same sound from both speakers. This can be helpful when the stereo image in the video is unbalanced, heavily leaning to the right or left, suffers from phase correlation issues, or you simply want to hear the entire audio using only one speaker.

It works on both video and audio elements on pages that support this feature. The extension is activated by clicking the left mouse button on its icon. For a full sound reset after adjusting the volume with the extension, it is recommended to reload the page.

Known issues:
-    On some pages, it is not possible to adjust the stereo image of the played elements. This is due to how the specific page is designed.
-    On some pages, when clicking on the extension button, the browser may mute the sound. This is due to the security configuration of the specific page or the server it is hosted on and unfortunately cannot be detected from the extension's point of view.

If you find this extension useful, you may consider supporting the author with a donation of any amount. Check the menu by right-clicking the extension button.                    

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

Όνομα StereoToMono StereoToMono
ID ffekmfclcdnahgaeagcmdcnbgkcjhfld
Επίσημο URL https://chromewebstore.google.com/detail/stereotomono/ffekmfclcdnahgaeagcmdcnbgkcjhfld
Περιγραφή This extension monofies the currently playing video or audio source with a single click on the extension button.
Μέγεθος Αρχείου 68.47 KB
Αριθμός Εγκαταστάσεων 2,438
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2023-08-03
Ημερομηνία Δημοσίευσης 2022-09-15
Αξιολόγηση 4.45/5 Συνολικά 20 Αξιολογήσεις
Προγραμματιστής no9
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "StereoToMono",
    "description": "This extension monofies the currently playing video or audio source with a single click on the extension button.",
    "version": "1.0",
    "author": "[email protected]",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "js": [
                "stereotomono.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "action": {
        "default_icon": "icon19.png"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png"
    }
}