WhatsApp Notification Changer
A simple extension that allows the user to change the notification sound of web.whatsapp.com.
Что такое WhatsApp Notification Changer?
WhatsApp Notification Changer - это расширение Chrome, разработанное rafael.galani, и его основная функция - "A simple extension that allows the user to change the notification sound of web.whatsapp.com.".
Снимки экрана расширения
Скачать файл CRX расширения WhatsApp Notification Changer
Скачайте файлы расширений WhatsApp Notification Changer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
A simple extension that allows the user to change the notification sound of web.whatsapp.com.
Основная информация о расширении
Название | |
ID | jnlilnljmhioncbmofmdlphmagmegkde |
Официальный URL | https://chrome.google.com/webstore/detail/whatsapp-notification-cha/jnlilnljmhioncbmofmdlphmagmegkde |
Описание | A simple extension that allows the user to change the notification sound of web.whatsapp.com. |
Размер файла | 83.43 KB |
Количество установок | 460 |
Текущая Версия | 1.0 |
Последнее Обновление | 2020-07-30 |
Дата публикации | 2020-07-30 |
Рейтинг | 4.00/5 Всего 6 оценок |
Разработчик | rafael.galani |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WhatsApp Notification Changer", "version": "1.0", "description": "A simple extension that allows the user to change the notification sound of web.whatsapp.com.", "permissions": [ "unlimitedStorage", "declarativeContent", "storage", "webRequest", "webRequestBlocking", "*:\/\/web.whatsapp.com\/*" ], "background": { "scripts": [ "background.js" ] }, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" } }, "content_scripts": [ { "js": [ "content-script.js" ], "matches": [ "*:\/\/web.whatsapp.com\/*" ] } ], "web_accessible_resources": [ "modifier.js" ], "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "manifest_version": 2 } |