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
电子邮箱 [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"
}