Replit SFX

Sound effects for actions on Replit

O que é Replit SFX?

Replit SFX é uma extensão do Chrome desenvolvida por lachienoble11, e sua principal característica é "Sound effects for actions on Replit".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Replit SFX

Baixe arquivos de extensão Replit SFX 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

                        https://replit.com/ is a website that allows you to run code live in your browser, but is pretty dull with sound effects.

This is an extension originally made for a Replit bounty posted by IroncladDev, to allow Replit to seem more lively with sound effects.                    

Informações Básicas da Extensão

Nome Replit SFX Replit SFX
ID jkgkkhigafclnmgpaklaljaggmninkdd
URL Oficial https://chromewebstore.google.com/detail/replit-sfx/jkgkkhigafclnmgpaklaljaggmninkdd
Descrição Sound effects for actions on Replit
Tamanho do Arquivo 150 KB
Contagem de Instalações 14
Versão Atual 1.0
Última Atualização 2022-12-02
Data de Publicação 2022-12-02
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor lachienoble11
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Replit SFX",
    "description": "Sound effects for actions on Replit",
    "version": "1.0",
    "action": {
        "default_popup": "volume.html",
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/replit.com\/*",
                "https:\/\/firewalledreplit.com\/*"
            ],
            "js": [
                "\/hello.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "audio\/*"
            ],
            "matches": [
                "https:\/\/replit.com\/*",
                "https:\/\/firewalledreplit.com\/*"
            ]
        }
    ],
    "icons": {
        "512": "icon.png"
    },
    "permissions": [
        "storage"
    ]
}