Replit SFX

Sound effects for actions on Replit

Hvad er Replit SFX?

Replit SFX er en Chrome-udvidelse udviklet af lachienoble11, og dens hovedfunktion er "Sound effects for actions on Replit".

Udvidelsesskærmbilleder

screenshot

Download Replit SFX-udvidelses-CRX-fil

Download Replit SFX-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Replit SFX Replit SFX
ID jkgkkhigafclnmgpaklaljaggmninkdd
Officiel URL https://chromewebstore.google.com/detail/replit-sfx/jkgkkhigafclnmgpaklaljaggmninkdd
Beskrivelse Sound effects for actions on Replit
Filstørrelse 150 KB
Antal Installationer 14
Nuværende Version 1.0
Senest Opdateret 2022-12-02
Udgivelsesdato 2022-12-02
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler lachienoble11
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    ]
}