Replit SFX
Sound effects for actions on Replit
Wat is Replit SFX?
Replit SFX is een Chrome-extensie ontwikkeld door lachienoble11, en de belangrijkste functie is "Sound effects for actions on Replit".
Extensie Screenshots
Download het CRX-bestand van de extensie Replit SFX
Download Replit SFX-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Replit SFX |
ID | jkgkkhigafclnmgpaklaljaggmninkdd |
Officiële URL | https://chromewebstore.google.com/detail/replit-sfx/jkgkkhigafclnmgpaklaljaggmninkdd |
Beschrijving | Sound effects for actions on Replit |
Bestandsgrootte | 150 KB |
Aantal Installaties | 14 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2022-12-02 |
Publicatiedatum | 2022-12-02 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | lachienoble11 |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |