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 |
| 电子邮箱 | [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"
]
} | |