Audio Delay

Add delay to audio

什麼是Audio Delay?

Audio Delay是由mchangrh開發的Chrome擴展程式,該擴展的主要功能是“Add delay to audio”。

擴展截圖

screenshot

下載Audio Delay擴展crx文件

下載Audio Delay擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Delays audio with WebAudio API.

Similar to other extensions, this extension intentionally delays and desyncs audio from linked video with the Web Audio API for compatibility with other extensions

Licenced under the MIT Licence
Source code at https://github.com/mchangrh/audio-delay

Changelog:

v0.2
- Added support for more than just YouTube, fixed edge cases where audio would not attach.                    

擴展基本資訊

名稱 Audio Delay Audio Delay
ID igaalhggadkifhnjchngkijkebilcajg
官方網址 https://chromewebstore.google.com/detail/audio-delay/igaalhggadkifhnjchngkijkebilcajg
簡介 Add delay to audio
檔案大小 25.5 KB
安裝次數 1,441
目前版本 0.2.1
更新時間 2023-03-16
上架時間 2022-02-08
評分 2.73/5 共 22 次評分
開發者 mchangrh
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/mchangrh/audio-delay
說明頁面URL https://github.com/mchangrh/audio-delay/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Audio Delay",
    "description": "Add delay to audio",
    "version": "0.2.1",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                ""
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ],
    "action": {
        "default_icon": "icons\/128.png",
        "default_popup": "src\/popup.html",
        "default_title": "Audio Delay"
    },
    "options_page": "src\/options.html"
}