(NO)tifications
Hide the unread messages title bar alerts on distracting websites.
Apa itu (NO)tifications?
(NO)tifications adalah ekstensi Chrome yang dikembangkan oleh Jonathan Woodard, dan fitur utamanya adalah "Hide the unread messages title bar alerts on distracting websites.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi (NO)tifications
Unduh file ekstensi (NO)tifications dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | ocfjkjbhicdjhmgkolejpojieddlogbg |
URL Resmi | https://chrome.google.com/webstore/detail/notifications/ocfjkjbhicdjhmgkolejpojieddlogbg |
Deskripsi | Hide the unread messages title bar alerts on distracting websites. |
Ukuran File | 309 KB |
Jumlah Instalasi | 10 |
Versi Saat Ini | 1.0.0.2 |
Terakhir Diperbarui | 2012-08-29 |
Tanggal Publikasi | 2012-08-29 |
Penilaian | 5.00/5 Total 4 Penilaian |
Pengembang | Jonathan Woodard |
Tipe Pembayaran | free |
Situs Ekstensi | http://woodar.dj |
Bahasa yang Didukung | 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'" } |