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
公式URL 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
Eメール [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"
}