(NO)tifications

Hide the unread messages title bar alerts on distracting websites.

Что такое (NO)tifications?

(NO)tifications - это расширение Chrome, разработанное Jonathan Woodard, и его основная функция - "Hide the unread messages title bar alerts on distracting websites.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения (NO)tifications

Скачайте файлы расширений (NO)tifications в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Seeing the 'unread' count notifications in the title bar for some sites can be very distracting. This removes them from a few popular sites! Selectively disables notifications for Gmail, Facebook and Twitter.                    

Основная информация о расширении

Название (NO)tifications (NO)tifications
ID ocfjkjbhicdjhmgkolejpojieddlogbg
Официальный URL https://chrome.google.com/webstore/detail/notifications/ocfjkjbhicdjhmgkolejpojieddlogbg
Описание Hide the unread messages title bar alerts on distracting websites.
Размер файла 309 KB
Количество установок 10
Текущая Версия 1.0.0.2
Последнее Обновление 2012-08-29
Дата публикации 2012-08-29
Рейтинг 5.00/5 Всего 4 оценок
Разработчик Jonathan Woodard
Тип оплаты free
Официальный сайт расширения http://woodar.dj
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "(NO)tifications",
    "version": "1.0.0.2",
    "manifest_version": 2,
    "description": "Hide the unread messages title bar alerts on distracting websites.",
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*",
                "*:\/\/*.facebook.com\/*",
                "*:\/\/twitter.com\/*",
                "*:\/\/plus.google.com\/*"
            ],
            "js": [
                "hide_count.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ],
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_security_policy": "script-src 'self'; object-src 'self'"
}