(NO)tifications

Hide the unread messages title bar alerts on distracting websites.

Was ist (NO)tifications?

(NO)tifications ist eine Chrome-Erweiterung, die von Jonathan Woodard entwickelt wurde, und ihr Hauptmerkmal ist "Hide the unread messages title bar alerts on distracting websites.".

Erweiterungsscreenshots

screenshot

(NO)tifications-Erweiterungs-CRX-Datei herunterladen

Laden Sie (NO)tifications-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Seeing the 'unread' count notifications in the title bar for some sites can be very distracting. This removes them from a few popular sites! Selectively disables notifications for Gmail, Facebook and Twitter.                    

Grundlegende Informationen zur Erweiterung

Name (NO)tifications (NO)tifications
ID ocfjkjbhicdjhmgkolejpojieddlogbg
Offizielle URL https://chrome.google.com/webstore/detail/notifications/ocfjkjbhicdjhmgkolejpojieddlogbg
Beschreibung Hide the unread messages title bar alerts on distracting websites.
Dateigröße 309 KB
Installationsanzahl 10
Aktuelle Version 1.0.0.2
Letztes Update 2012-08-29
Veröffentlichungsdatum 2012-08-29
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler Jonathan Woodard
Zahlungsart free
Erweiterungswebsite http://woodar.dj
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "(NO)tifications",
    "version": "1.0.0.2",
    "manifest_version": 2,
    "description": "Hide the unread messages title bar alerts on distracting websites.",
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*",
                "*:\/\/*.facebook.com\/*",
                "*:\/\/twitter.com\/*",
                "*:\/\/plus.google.com\/*"
            ],
            "js": [
                "hide_count.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ],
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_security_policy": "script-src 'self'; object-src 'self'"
}