Replit SFX
Sound effects for actions on Replit
Apa itu Replit SFX?
Replit SFX adalah ekstensi Chrome yang dikembangkan oleh lachienoble11, dan fitur utamanya adalah "Sound effects for actions on Replit".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Replit SFX
Unduh file ekstensi Replit SFX dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Replit SFX |
ID | jkgkkhigafclnmgpaklaljaggmninkdd |
URL Resmi | https://chromewebstore.google.com/detail/replit-sfx/jkgkkhigafclnmgpaklaljaggmninkdd |
Deskripsi | Sound effects for actions on Replit |
Ukuran File | 150 KB |
Jumlah Instalasi | 14 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2022-12-02 |
Tanggal Publikasi | 2022-12-02 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | lachienoble11 |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |