UI Sounds
Play sounds for important events in the browser, such as a page loading or a new tab being created.
Что такое UI Sounds?
UI Sounds - это расширение Chrome, разработанное LordLuceus, и его основная функция - "Play sounds for important events in the browser, such as a page loading or a new tab being created.".
Снимки экрана расширения
Скачать файл CRX расширения UI Sounds
Скачайте файлы расширений UI Sounds в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
If you'd like the browser to audibly notify you when things happen, then this extension is for you. Includes options to enable or disable individual sounds and change individual sound volume. Special thanks to Andre Louis, who created the sounds for this project. https://youtube.com/TheOnjLouis/ If you like this extension and want to support its continued development, then please consider making a small donation: https://paypal.me/luceusproductions
Основная информация о расширении
Название | UI Sounds |
ID | oclhbcpaaaooemlnhjblilmchdnnjcao |
Официальный URL | https://chromewebstore.google.com/detail/ui-sounds/oclhbcpaaaooemlnhjblilmchdnnjcao |
Описание | Play sounds for important events in the browser, such as a page loading or a new tab being created. |
Размер файла | 711 KB |
Количество установок | 291 |
Текущая Версия | 1.1.0 |
Последнее Обновление | 2020-11-28 |
Дата публикации | 2020-11-04 |
Рейтинг | 4.25/5 Всего 4 оценок |
Разработчик | LordLuceus |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/LordLuceus/chrome-ui-sounds/ |
URL страницы помощи | https://github.com/LordLuceus/chrome-ui-sounds/issues/ |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "UI Sounds", "version": "1.1.0", "description": "Play sounds for important events in the browser, such as a page loading or a new tab being created.", "author": "LordLuceus", "manifest_version": 2, "icons": { "128": "icon_128.png", "16": "icon_16.png", "32": "icon_32.png" }, "background": { "persistent": false, "scripts": [ "background.js" ] }, "permissions": [ "storage" ], "options_page": "options.html" } |