Replit SFX

Sound effects for actions on Replit

Co to jest Replit SFX?

Replit SFX to rozszerzenie Chrome opracowane przez lachienoble11, a jego główną funkcją jest „Sound effects for actions on Replit”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Replit SFX

Pobierz pliki rozszerzeń Replit SFX 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Replit SFX Replit SFX
ID jkgkkhigafclnmgpaklaljaggmninkdd
Oficjalny URL https://chromewebstore.google.com/detail/replit-sfx/jkgkkhigafclnmgpaklaljaggmninkdd
Opis Sound effects for actions on Replit
Rozmiar pliku 150 KB
Liczba instalacji 14
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2022-12-02
Data Publikacji 2022-12-02
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper lachienoble11
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}