Attention
Watch your browsing habits and get reminded when wasting time.
O que é Attention?
Attention é uma extensão do Chrome desenvolvida por Alsonax, e sua principal característica é "Watch your browsing habits and get reminded when wasting time.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Attention
Baixe arquivos de extensão Attention 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
Attention keeps track of the websites you visit and stops you from wasting lots of time on distracting websites. It doesn't block websites straight away, but shows a reminder which is impossible to ignore. - no setup required, just rate the websites you frequently visit - your browsing history is private, all data stays in the browser
Informações Básicas da Extensão
Nome | Attention |
ID | nmejnlclcnjakdbpfehhcobbmlcpbiba |
URL Oficial | https://chromewebstore.google.com/detail/attention/nmejnlclcnjakdbpfehhcobbmlcpbiba |
Descrição | Watch your browsing habits and get reminded when wasting time. |
Tamanho do Arquivo | 745 KB |
Contagem de Instalações | 289 |
Versão Atual | 0.2.12 |
Última Atualização | 2015-01-11 |
Data de Publicação | 2015-01-11 |
Classificação | 4.00/5 Total de 5 Avaliações |
Desenvolvedor | Alsonax |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Attention", "version": "0.2.12", "manifest_version": 2, "description": "Watch your browsing habits and get reminded when wasting time.", "offline_enabled": true, "icons": { "16": "icons\/green-16.png", "48": "icons\/app-48.png", "128": "icons\/app-128.png" }, "background": { "scripts": [ "vendor\/moment\/moment.js", "src\/persistence\/options.js", "src\/persistence\/store.js", "src\/background\/background.js" ], "persistent": false }, "browser_action": { "default_icon": { "16": "icons\/gray-16.png" }, "default_title": "Attention" }, "options_page": "src\/options\/index.html", "permissions": [ "chrome:\/\/favicon\/", "storage", "tabs", "http:\/\/*\/", "https:\/\/*\/" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "src\/inject\/inject.css" ], "run_at": "document_start" }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "vendor\/zepto\/zepto.min.js", "src\/inject\/inject.js" ] } ], "web_accessible_resources": [ "src\/popup\/*", "test\/*", "icons\/*", "vendor\/*" ], "content_security_policy": "script-src 'self'; object-src 'self'" } |