(NO)tifications

Hide the unread messages title bar alerts on distracting websites.

Qu'est-ce que (NO)tifications ?

(NO)tifications est une extension Chrome développée par Jonathan Woodard, et sa fonction principale est "Hide the unread messages title bar alerts on distracting websites.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension (NO)tifications

Téléchargez les fichiers d'extension (NO)tifications au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom (NO)tifications (NO)tifications
ID ocfjkjbhicdjhmgkolejpojieddlogbg
URL Officiel https://chrome.google.com/webstore/detail/notifications/ocfjkjbhicdjhmgkolejpojieddlogbg
Description Hide the unread messages title bar alerts on distracting websites.
Taille du Fichier 309 KB
Nombre d'Installations 10
Version Actuelle 1.0.0.2
Dernière Mise à Jour 2012-08-29
Date de Publication 2012-08-29
Évaluation 5.00/5 Total 4 Évaluations
Développeur Jonathan Woodard
Type de Paiement free
Site Web de l'Extension http://woodar.dj
Langues Prises en Charge 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'"
}