(NO)tifications
Hide the unread messages title bar alerts on distracting websites.
O que é (NO)tifications?
(NO)tifications é uma extensão do Chrome desenvolvida por Jonathan Woodard, e sua principal característica é "Hide the unread messages title bar alerts on distracting websites.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão (NO)tifications
Baixe arquivos de extensão (NO)tifications no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | ocfjkjbhicdjhmgkolejpojieddlogbg |
URL Oficial | https://chrome.google.com/webstore/detail/notifications/ocfjkjbhicdjhmgkolejpojieddlogbg |
Descrição | Hide the unread messages title bar alerts on distracting websites. |
Tamanho do Arquivo | 309 KB |
Contagem de Instalações | 10 |
Versão Atual | 1.0.0.2 |
Última Atualização | 2012-08-29 |
Data de Publicação | 2012-08-29 |
Classificação | 5.00/5 Total de 4 Avaliações |
Desenvolvedor | Jonathan Woodard |
Tipo de Pagamento | free |
Site da Extensão | http://woodar.dj |
Idiomas Suportados | 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'" } |