Replit SFX
Sound effects for actions on Replit
Was ist Replit SFX?
Replit SFX ist eine Chrome-Erweiterung, die von lachienoble11 entwickelt wurde, und ihr Hauptmerkmal ist "Sound effects for actions on Replit".
Erweiterungsscreenshots
Replit SFX-Erweiterungs-CRX-Datei herunterladen
Laden Sie Replit SFX-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jkgkkhigafclnmgpaklaljaggmninkdd |
| Offizielle URL | https://chromewebstore.google.com/detail/replit-sfx/jkgkkhigafclnmgpaklaljaggmninkdd |
| Beschreibung | Sound effects for actions on Replit |
| Dateigröße | 150 KB |
| Installationsanzahl | 14 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2022-12-02 |
| Veröffentlichungsdatum | 2022-12-02 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | lachienoble11 |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
]
} | |