Audio Delay

Add delay to audio

Co to jest Audio Delay?

Audio Delay to rozszerzenie Chrome opracowane przez mchangrh, a jego główną funkcją jest „Add delay to audio”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Audio Delay

Pobierz pliki rozszerzeń Audio Delay w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Audio Delay Audio Delay
ID igaalhggadkifhnjchngkijkebilcajg
Oficjalny URL https://chromewebstore.google.com/detail/audio-delay/igaalhggadkifhnjchngkijkebilcajg
Opis Add delay to audio
Rozmiar pliku 25.5 KB
Liczba instalacji 1,441
Aktualna Wersja 0.2.1
Ostatnia Aktualizacja 2023-03-16
Data Publikacji 2022-02-08
Ocena 2.73/5 Łącznie 22 Oceny
Deweloper mchangrh
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/mchangrh/audio-delay
Adres URL Strony Pomocy https://github.com/mchangrh/audio-delay/issues
Obsługiwane Języki 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"
}