Outside Sound

Applies a filter to currently playing audio and makes it sound like you have left the room.

O que é Outside Sound?

Outside Sound é uma extensão do Chrome desenvolvida por thezanke, e sua principal característica é "Applies a filter to currently playing audio and makes it sound like you have left the room.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Outside Sound

Baixe arquivos de extensão Outside Sound 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

                        When activated, creates a lowpass filter node in the HTML5 Audio API sound graph and routes the sound from all 

Informações Básicas da Extensão

Nome Outside Sound Outside Sound
ID lebiilodohbecpcjkjfekdeckepapieh
URL Oficial https://chromewebstore.google.com/detail/outside-sound/lebiilodohbecpcjkjfekdeckepapieh
Descrição Applies a filter to currently playing audio and makes it sound like you have left the room.
Tamanho do Arquivo 9.54 KB
Contagem de Instalações 94
Versão Atual 1.0.2
Última Atualização 2020-10-19
Data de Publicação 2020-10-08
Classificação 5.00/5 Total de 9 Avaliações
Desenvolvedor thezanke
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://alexhoward.io
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Outside Sound",
    "version": "1.0.2",
    "manifest_version": 2,
    "description": "Applies a filter to currently playing audio and makes it sound like you have left the room.",
    "homepage_url": "https:\/\/alexhoward.io",
    "icons": {
        "128": "icons\/icon128-outside.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon128-inside.png",
        "default_title": "Step outside ->"
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/inject.js"
            ]
        }
    ]
}