(NO)tifications
Hide the unread messages title bar alerts on distracting websites.
What is (NO)tifications?
(NO)tifications is a Chrome extension developed by Jonathan Woodard, and its main feature is "Hide the unread messages title bar alerts on distracting websites.".
Extension Screenshots
Download (NO)tifications Extension CRX File
Download (NO)tifications extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | ocfjkjbhicdjhmgkolejpojieddlogbg |
Official URL | https://chrome.google.com/webstore/detail/notifications/ocfjkjbhicdjhmgkolejpojieddlogbg |
Description | Hide the unread messages title bar alerts on distracting websites. |
File Size | 309 KB |
Installation Count | 10 |
Current Version | 1.0.0.2 |
Last Updated | 2012-08-29 |
Publish Date | 2012-08-29 |
Rating | 5.00/5 Total 4 Ratings |
Developer | Jonathan Woodard |
Payment Type | free |
Extension Website | http://woodar.dj |
Supported Languages | 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'" } |