Audio Delay

Add delay to audio

O que é Audio Delay?

Audio Delay é uma extensão do Chrome desenvolvida por mchangrh, e sua principal característica é "Add delay to audio".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Audio Delay

Baixe arquivos de extensão Audio Delay no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Audio Delay Audio Delay
ID igaalhggadkifhnjchngkijkebilcajg
URL Oficial https://chromewebstore.google.com/detail/audio-delay/igaalhggadkifhnjchngkijkebilcajg
Descrição Add delay to audio
Tamanho do Arquivo 25.5 KB
Contagem de Instalações 1,441
Versão Atual 0.2.1
Última Atualização 2023-03-16
Data de Publicação 2022-02-08
Classificação 2.73/5 Total de 22 Avaliações
Desenvolvedor mchangrh
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/mchangrh/audio-delay
URL da Página de Ajuda https://github.com/mchangrh/audio-delay/issues
Idiomas Suportados 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"
}