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
    }
}