(NO)tifications
Hide the unread messages title bar alerts on distracting websites.
Hvad er (NO)tifications?
(NO)tifications er en Chrome-udvidelse udviklet af Jonathan Woodard, og dens hovedfunktion er "Hide the unread messages title bar alerts on distracting websites.".
Udvidelsesskærmbilleder
Download (NO)tifications-udvidelses-CRX-fil
Download (NO)tifications-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | |
ID | ocfjkjbhicdjhmgkolejpojieddlogbg |
Officiel URL | https://chrome.google.com/webstore/detail/notifications/ocfjkjbhicdjhmgkolejpojieddlogbg |
Beskrivelse | Hide the unread messages title bar alerts on distracting websites. |
Filstørrelse | 309 KB |
Antal Installationer | 10 |
Nuværende Version | 1.0.0.2 |
Senest Opdateret | 2012-08-29 |
Udgivelsesdato | 2012-08-29 |
Bedømmelse | 5.00/5 Samlet 4 Bedømmelser |
Udvikler | Jonathan Woodard |
Betalingsmetode | free |
Udvidelseswebsted | http://woodar.dj |
Understøttede Sprog | 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'" } |