(NO)tifications

Hide the unread messages title bar alerts on distracting websites.

Wat is (NO)tifications?

(NO)tifications is een Chrome-extensie ontwikkeld door Jonathan Woodard, en de belangrijkste functie is "Hide the unread messages title bar alerts on distracting websites.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie (NO)tifications

Download (NO)tifications-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam (NO)tifications (NO)tifications
ID ocfjkjbhicdjhmgkolejpojieddlogbg
Officiële URL https://chrome.google.com/webstore/detail/notifications/ocfjkjbhicdjhmgkolejpojieddlogbg
Beschrijving Hide the unread messages title bar alerts on distracting websites.
Bestandsgrootte 309 KB
Aantal Installaties 10
Huidige Versie 1.0.0.2
Laatst Bijgewerkt 2012-08-29
Publicatiedatum 2012-08-29
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar Jonathan Woodard
Betalingswijze free
Extensiewebsite http://woodar.dj
Ondersteunde Talen 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'"
}