(NO)tifications

Hide the unread messages title bar alerts on distracting websites.

Cos'è (NO)tifications?

(NO)tifications è un'estensione di Chrome sviluppata da Jonathan Woodard, e la sua funzione principale è "Hide the unread messages title bar alerts on distracting websites.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione (NO)tifications

Scarica i file di estensione (NO)tifications in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome (NO)tifications (NO)tifications
ID ocfjkjbhicdjhmgkolejpojieddlogbg
URL Ufficiale https://chrome.google.com/webstore/detail/notifications/ocfjkjbhicdjhmgkolejpojieddlogbg
Descrizione Hide the unread messages title bar alerts on distracting websites.
Dimensione del File 309 KB
Conteggio Installazioni 10
Versione Corrente 1.0.0.2
Ultimo Aggiornamento 2012-08-29
Data di Pubblicazione 2012-08-29
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore Jonathan Woodard
Tipo di Pagamento free
Sito Web dell'Estensione http://woodar.dj
Lingue Supportate 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'"
}