Replit SFX
Sound effects for actions on Replit
Replit SFXとは何ですか?
Replit SFXはlachienoble11によって開発されたChromeの拡張機能で、その主な機能は「Sound effects for actions on Replit」です。
拡張機能のスクリーンショット
Replit SFX拡張機能のCRXファイルをダウンロード
Replit SFX拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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. 拡張機能の基本情報
| 名前 | |
| ID | jkgkkhigafclnmgpaklaljaggmninkdd |
| 公式URL | https://chromewebstore.google.com/detail/replit-sfx/jkgkkhigafclnmgpaklaljaggmninkdd |
| 説明 | Sound effects for actions on Replit |
| ファイルサイズ | 150 KB |
| インストール数 | 14 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2022-12-02 |
| 公開日 | 2022-12-02 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | lachienoble11 |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | 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"
]
} | |