Replit SFX
Sound effects for actions on Replit
Cos'è Replit SFX?
Replit SFX è un'estensione di Chrome sviluppata da lachienoble11, e la sua funzione principale è "Sound effects for actions on Replit".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Replit SFX
Scarica i file di estensione Replit SFX in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Replit SFX |
ID | jkgkkhigafclnmgpaklaljaggmninkdd |
URL Ufficiale | https://chromewebstore.google.com/detail/replit-sfx/jkgkkhigafclnmgpaklaljaggmninkdd |
Descrizione | Sound effects for actions on Replit |
Dimensione del File | 150 KB |
Conteggio Installazioni | 14 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2022-12-02 |
Data di Pubblicazione | 2022-12-02 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | lachienoble11 |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |