StereoToMono

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

什麼是StereoToMono?

StereoToMono是由no9開發的Chrome擴展程式,該擴展的主要功能是“This extension monofies the currently playing video or audio source with a single click on the extension button.”。

擴展截圖

screenshot
screenshot

下載StereoToMono擴展crx文件

下載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
官方網址 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"
    }
}