(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 |
官方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'" } |