(NO)tifications
Hide the unread messages title bar alerts on distracting websites.
什麼是(NO)tifications?
(NO)tifications是由Jonathan Woodard開發的Chrome擴展程式,該擴展的主要功能是“Hide the unread messages title bar alerts on distracting websites.”。
擴展截圖
下載(NO)tifications擴展crx文件
下載(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 |
官方網址 | 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'" } |