(NO)tifications

Hide the unread messages title bar alerts on distracting websites.

Co je (NO)tifications?

(NO)tifications je rozšíření Chrome vyvinuté Jonathan Woodard, a jeho hlavní funkcí je „Hide the unread messages title bar alerts on distracting websites.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření (NO)tifications

Stáhněte si soubory rozšíření (NO)tifications ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název (NO)tifications (NO)tifications
ID ocfjkjbhicdjhmgkolejpojieddlogbg
Oficiální URL https://chrome.google.com/webstore/detail/notifications/ocfjkjbhicdjhmgkolejpojieddlogbg
Popis Hide the unread messages title bar alerts on distracting websites.
Velikost souboru 309 KB
Počet instalací 10
Aktuální Verze 1.0.0.2
Poslední Aktualizace 2012-08-29
Datum Vydání 2012-08-29
Hodnocení 5.00/5 Celkem 4 Hodnocení
Vývojář Jonathan Woodard
Typ Platby free
Webové stránky Rozšíření http://woodar.dj
Podporované Jazyky 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'"
}