Audio Delay

Add delay to audio

Apa itu Audio Delay?

Audio Delay adalah ekstensi Chrome yang dikembangkan oleh mchangrh, dan fitur utamanya adalah "Add delay to audio".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Audio Delay

Unduh file ekstensi Audio Delay dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Audio Delay Audio Delay
ID igaalhggadkifhnjchngkijkebilcajg
URL Resmi https://chromewebstore.google.com/detail/audio-delay/igaalhggadkifhnjchngkijkebilcajg
Deskripsi Add delay to audio
Ukuran File 25.5 KB
Jumlah Instalasi 1,441
Versi Saat Ini 0.2.1
Terakhir Diperbarui 2023-03-16
Tanggal Publikasi 2022-02-08
Penilaian 2.73/5 Total 22 Penilaian
Pengembang mchangrh
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/mchangrh/audio-delay
URL Halaman Bantuan https://github.com/mchangrh/audio-delay/issues
Bahasa yang Didukung 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"
}