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 |
| 官方網址 | 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 |
| 電子郵箱 | [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"
]
} | |