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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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\/"
    ]
}