(NO)tifications

Hide the unread messages title bar alerts on distracting websites.

Co to jest (NO)tifications?

(NO)tifications to rozszerzenie Chrome opracowane przez Jonathan Woodard, a jego główną funkcją jest „Hide the unread messages title bar alerts on distracting websites.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia (NO)tifications

Pobierz pliki rozszerzeń (NO)tifications w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa (NO)tifications (NO)tifications
ID ocfjkjbhicdjhmgkolejpojieddlogbg
Oficjalny URL https://chrome.google.com/webstore/detail/notifications/ocfjkjbhicdjhmgkolejpojieddlogbg
Opis Hide the unread messages title bar alerts on distracting websites.
Rozmiar pliku 309 KB
Liczba instalacji 10
Aktualna Wersja 1.0.0.2
Ostatnia Aktualizacja 2012-08-29
Data Publikacji 2012-08-29
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper Jonathan Woodard
Typ Płatności free
Strona Rozszerzenia http://woodar.dj
Obsługiwane Języki 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'"
}