Replit SFX
Sound effects for actions on Replit
Vad är Replit SFX?
Replit SFX är en Chrome-tillägg utvecklad av lachienoble11, och dess huvudfunktion är "Sound effects for actions on Replit".
Tilläggsskärmbilder
Ladda ner Replit SFX-förlängningens CRX-fil
Ladda ner Replit SFX-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
                        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äggande Information om Tillägg
| Namn |   |  
| ID | jkgkkhigafclnmgpaklaljaggmninkdd | 
| Officiell webbadress | https://chromewebstore.google.com/detail/replit-sfx/jkgkkhigafclnmgpaklaljaggmninkdd | 
| Beskrivning | Sound effects for actions on Replit | 
| Filstorlek | 150 KB | 
| Antal Installationer | 14 | 
| Aktuell Version | 1.0 | 
| Senast Uppdaterad | 2022-12-02 | 
| Publiceringsdatum | 2022-12-02 | 
| Betyg | 5.00/5 Totalt 1 Betyg | 
| Utvecklare | lachienoble11 | 
| E-post | [email protected] | 
| Betalningssätt | free | 
| Stödda Språk | 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"
    ]
}  |  |