BazQux Notifier

Displays the number of unread items from BazQux.com

Что такое BazQux Notifier?

BazQux Notifier - это расширение Chrome, разработанное kosz, и его основная функция - "Displays the number of unread items from BazQux.com".

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

screenshot

Скачать файл CRX расширения BazQux Notifier

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

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

                        This extension displays the number of unread items from BazQux.com in toolbar button.

Install the extension and log in to https://bazqux.com if needed. You will get unread count on the icon's badge. Click the button to open BazQux Reader site in a new tab.                    

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

Название BazQux Notifier BazQux Notifier
ID fgoenlfbfnofepaodjepdhkoepoogedb
Официальный URL https://chromewebstore.google.com/detail/bazqux-notifier/fgoenlfbfnofepaodjepdhkoepoogedb
Описание Displays the number of unread items from BazQux.com
Размер файла 20.6 KB
Количество установок 71
Текущая Версия 1.2
Последнее Обновление 2013-07-03
Дата публикации 2013-07-03
Рейтинг 5.00/5 Всего 7 оценок
Разработчик kosz
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BazQux Notifier",
    "description": "Displays the number of unread items from BazQux.com",
    "version": "1.2",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/icon-19.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bazqux.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "alarms",
        "tabs",
        "https:\/\/bazqux.com\/"
    ]
}