Audio Delay

Add delay to audio

Wat is Audio Delay?

Audio Delay is een Chrome-extensie ontwikkeld door mchangrh, en de belangrijkste functie is "Add delay to audio".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Audio Delay

Download Audio Delay-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Audio Delay Audio Delay
ID igaalhggadkifhnjchngkijkebilcajg
Officiële URL https://chromewebstore.google.com/detail/audio-delay/igaalhggadkifhnjchngkijkebilcajg
Beschrijving Add delay to audio
Bestandsgrootte 25.5 KB
Aantal Installaties 1,441
Huidige Versie 0.2.1
Laatst Bijgewerkt 2023-03-16
Publicatiedatum 2022-02-08
Beoordeling 2.73/5 Totaal 22 Beoordelingen
Ontwikkelaar mchangrh
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/mchangrh/audio-delay
Help Pagina-URL https://github.com/mchangrh/audio-delay/issues
Ondersteunde Talen 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"
}