Replit SFX

Sound effects for actions on Replit

What is Replit SFX?

Replit SFX is a Chrome extension developed by lachienoble11, and its main feature is "Sound effects for actions on Replit".

Extension Screenshots

screenshot

Download Replit SFX Extension CRX File

Download Replit SFX extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Replit SFX Replit SFX
ID jkgkkhigafclnmgpaklaljaggmninkdd
Official URL https://chromewebstore.google.com/detail/replit-sfx/jkgkkhigafclnmgpaklaljaggmninkdd
Description Sound effects for actions on Replit
File Size 150 KB
Installation Count 14
Current Version 1.0
Last Updated 2022-12-02
Publish Date 2022-12-02
Rating 5.00/5 Total 1 Ratings
Developer lachienoble11
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}