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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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
    }
}