Replit SFX
Sound effects for actions on Replit
Replit SFX là gì?
Replit SFX là một tiện ích mở rộng Chrome được phát triển bởi lachienoble11, và tính năng chính của nó là "Sound effects for actions on Replit".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Replit SFX
Tải xuống các tệp mở rộng Replit SFX dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Replit SFX |
ID | jkgkkhigafclnmgpaklaljaggmninkdd |
URL Chính Thức | https://chromewebstore.google.com/detail/replit-sfx/jkgkkhigafclnmgpaklaljaggmninkdd |
Mô tả | Sound effects for actions on Replit |
Kích Thước Tệp | 150 KB |
Số Lần Cài Đặt | 14 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2022-12-02 |
Ngày Phát Hành | 2022-12-02 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | lachienoble11 |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |