Replit SFX

Sound effects for actions on Replit

Qu'est-ce que Replit SFX ?

Replit SFX est une extension Chrome développée par lachienoble11, et sa fonction principale est "Sound effects for actions on Replit".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Replit SFX

Téléchargez les fichiers d'extension Replit SFX au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Replit SFX Replit SFX
ID jkgkkhigafclnmgpaklaljaggmninkdd
URL Officiel https://chromewebstore.google.com/detail/replit-sfx/jkgkkhigafclnmgpaklaljaggmninkdd
Description Sound effects for actions on Replit
Taille du Fichier 150 KB
Nombre d'Installations 14
Version Actuelle 1.0
Dernière Mise à Jour 2022-12-02
Date de Publication 2022-12-02
Évaluation 5.00/5 Total 1 Évaluations
Développeur lachienoble11
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}