(NO)tifications
Hide the unread messages title bar alerts on distracting websites.
Τι είναι το (NO)tifications;
Το (NO)tifications είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jonathan Woodard, και η κύρια λειτουργία του είναι "Hide the unread messages title bar alerts on distracting websites.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης (NO)tifications
Λήψη αρχείων επέκτασης (NO)tifications σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | ocfjkjbhicdjhmgkolejpojieddlogbg |
Επίσημο URL | https://chrome.google.com/webstore/detail/notifications/ocfjkjbhicdjhmgkolejpojieddlogbg |
Περιγραφή | Hide the unread messages title bar alerts on distracting websites. |
Μέγεθος Αρχείου | 309 KB |
Αριθμός Εγκαταστάσεων | 10 |
Τρέχουσα Έκδοση | 1.0.0.2 |
Τελευταία Ενημέρωση | 2012-08-29 |
Ημερομηνία Δημοσίευσης | 2012-08-29 |
Αξιολόγηση | 5.00/5 Συνολικά 4 Αξιολογήσεις |
Προγραμματιστής | Jonathan Woodard |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | http://woodar.dj |
Υποστηριζόμενες Γλώσσες | 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'" } |