(NO)tifications

Hide the unread messages title bar alerts on distracting websites.

Vad är (NO)tifications?

(NO)tifications är en Chrome-tillägg utvecklad av Jonathan Woodard, och dess huvudfunktion är "Hide the unread messages title bar alerts on distracting websites.".

Tilläggsskärmbilder

screenshot

Ladda ner (NO)tifications-förlängningens CRX-fil

Ladda ner (NO)tifications-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn (NO)tifications (NO)tifications
ID ocfjkjbhicdjhmgkolejpojieddlogbg
Officiell webbadress https://chrome.google.com/webstore/detail/notifications/ocfjkjbhicdjhmgkolejpojieddlogbg
Beskrivning Hide the unread messages title bar alerts on distracting websites.
Filstorlek 309 KB
Antal Installationer 10
Aktuell Version 1.0.0.2
Senast Uppdaterad 2012-08-29
Publiceringsdatum 2012-08-29
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare Jonathan Woodard
Betalningssätt free
Tilläggswebbplats http://woodar.dj
Stödda Språk 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'"
}