GitHub Red Alert

Changes the notification icon to red if you have participating notifications

ما هو GitHub Red Alert؟

GitHub Red Alert هو إضافة Chrome تم تطويرها بواسطة bitoiu، والميزة الرئيسية لها هي "Changes the notification icon to red if you have participating notifications".

تحميل ملف CRX للإضافة GitHub Red Alert

قم بتنزيل ملفات الامتداد GitHub Red Alert بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        As a GitHub user I pay very close attention to the Participating notification, i.e. the notifications you get from participating on a thread or being directly mentioned by others (by handle or team). Unfortunately just by looking at the notification bell, there's no way to distinguish if the notifications are participating or generally unread. Since I don't follow generic Unread notifications as closely as I do the Participating ones, I decided to augment the UI to distinguish the two.                    

معلومات أساسية عن التمديد

الاسم GitHub Red Alert GitHub Red Alert
ID kmiekjkmkbhbnlempjkaombjjcfhdnfe
عنوان URL الرسمي https://chromewebstore.google.com/detail/github-red-alert/kmiekjkmkbhbnlempjkaombjjcfhdnfe
الوصف Changes the notification icon to red if you have participating notifications
حجم الملف 2.98 MB
عدد التثبيتات 18
النسخة الحالية 0.11
آخر تحديث 2015-12-10
تاريخ النشر 2015-12-10
المطور bitoiu
نوع الدفع free
موقع الإضافة https://github.com/bitoiu/github-red-alert
عنوان صفحة المساعدة https://github.com/bitoiu/github-red-alert/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Red Alert",
    "version": "0.11",
    "description": "Changes the notification icon to red if you have participating notifications",
    "permissions": [
        "https:\/\/github.com\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "vendor\/jquery\/dist\/jquery.js",
                "dist\/script.js"
            ],
            "css": [
                "dist\/style.css"
            ]
        }
    ],
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "manifest_version": 2,
    "options_page": "dist\/options.html",
    "options_ui": {
        "page": "dist\/options.html",
        "chrome_style": true
    }
}