Chrome Sound Effects
Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled.
Что такое Chrome Sound Effects?
Chrome Sound Effects - это расширение Chrome, разработанное https://sivasuthan.com, и его основная функция - "Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled.".
Снимки экрана расширения
Скачать файл CRX расширения Chrome Sound Effects
Скачайте файлы расширений Chrome Sound Effects в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
I created this extension to energize the experience of browsing the web. It adds sound effects to user triggered events like creating and closing tabs, switching tabs, scrolling, navigating back and forward, etc. All the effects can be manually disabled by clicking the extension icon. I am working on adding much more nicer sounds. This is my first extension, so please leave feedback for future versions. Thank you for checking out the extension. Contact me by visiting http://sivasuthan.com.
Основная информация о расширении
Название | Chrome Sound Effects |
ID | oekengelpdnkfopdkkphkmaacfanbnla |
Официальный URL | https://chromewebstore.google.com/detail/chrome-sound-effects/oekengelpdnkfopdkkphkmaacfanbnla |
Описание | Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled. |
Размер файла | 28.84 KB |
Количество установок | 1,712 |
Текущая Версия | 1.2 |
Последнее Обновление | 2018-03-28 |
Дата публикации | 2018-03-27 |
Рейтинг | 3.32/5 Всего 25 оценок |
Разработчик | https://sivasuthan.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chrome Sound Effects", "version": "1.2", "description": "Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled.", "background": { "scripts": [ "bg.js" ] }, "options_page": "options.html", "icons": { "128": "icon.png" }, "permissions": [ "tabs", "bookmarks", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "all_frames": true } ], "browser_action": { "default_icon": "icon.png", "default_popup": "options.html" }, "manifest_version": 2 } |