Hipchat Auto Dismiss Notifications
Uses webkitNotifications instead of Notification so that notifications are auto dismissed after 5 seconds.
Что такое Hipchat Auto Dismiss Notifications?
Hipchat Auto Dismiss Notifications - это расширение Chrome, разработанное Darrin Holst, и его основная функция - "Uses webkitNotifications instead of Notification so that notifications are auto dismissed after 5 seconds.".
Скачать файл CRX расширения Hipchat Auto Dismiss Notifications
Скачайте файлы расширений Hipchat Auto Dismiss Notifications в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Основная информация о расширении
| Название | |
| ID | nmindifmgoccchgnkojbjoppdpcdblim |
| Официальный URL | https://chromewebstore.google.com/detail/empty-title/nmindifmgoccchgnkojbjoppdpcdblim |
| Описание | Uses webkitNotifications instead of Notification so that notifications are auto dismissed after 5 seconds. |
| Размер файла | 4.55 KB |
| Количество установок | 20 |
| Текущая Версия | 1.0.0 |
| Последнее Обновление | 2013-02-26 |
| Дата публикации | 2013-02-26 |
| Рейтинг | 4.00/5 Всего 1 оценок |
| Разработчик | Darrin Holst |
| Тип оплаты | free |
| Поддерживаемые языки | |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Hipchat Auto Dismiss Notifications",
"version": "1.0.0",
"description": "Uses webkitNotifications instead of Notification so that notifications are auto dismissed after 5 seconds.",
"permissions": [
"https:\/\/*.hipchat.com\/"
],
"content_scripts": [
{
"all_frames": true,
"matches": [
"https:\/\/*.hipchat.com\/chat"
],
"js": [
"javascripts\/killNotification.js"
]
}
],
"web_accessible_resources": [
"javascripts\/inject.js"
]
} | |