Replit SFX
Sound effects for actions on Replit
Что такое Replit SFX?
Replit SFX - это расширение Chrome, разработанное lachienoble11, и его основная функция - "Sound effects for actions on Replit".
Снимки экрана расширения
Скачать файл CRX расширения Replit SFX
Скачайте файлы расширений 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.
Основная информация о расширении
Название | Replit SFX |
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" ] } |