Walking in Chrome
Walking in Chrome: walked distance, clicks & wheels on the web
O que é Walking in Chrome?
Walking in Chrome é uma extensão do Chrome desenvolvida por https://mindon.appspot.com, e sua principal característica é "Walking in Chrome: walked distance, clicks & wheels on the web".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Walking in Chrome
Baixe arquivos de extensão Walking in Chrome 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
Find out how far you have walked on the web in Chrome, and how many clicks you've made. ( No network requests in this extension, BTW: inside Chrome Web Store, it keeps still... ) Have fun :-) using "Walking in Chrome" Any suggestion is welcome. update log, ---------------------------- v2.1 (24/3, 2011) Text updated, donate link, website link v2.0 (8/3, 2011) UI updated v1.9 (26/2, 2011) daily date sort bug fixed v1.8 (23/2, 2011) bug fixing and optimization v1.7 (16/2, 2011) fix share text bug, update scrollbar of daily distance v1.6 (25/1, 2011) optimize size and view, add animation to share icons. v1.5 (23/1, 2011) add share bar v1.3/1.4 (16/1, 2011) append mouse wheel data, providing daily history :-) v1.2 change to another API to avoid memory leak problem caused by sendRequest API. ---------------------------- Developed by Mindon Feng http://mindon.appspot.com/
Informações Básicas da Extensão
Nome | Walking in Chrome |
ID | pacjmfodicicobdolgmgmijclblmmehf |
URL Oficial | https://chromewebstore.google.com/detail/walking-in-chrome/pacjmfodicicobdolgmgmijclblmmehf |
Descrição | Walking in Chrome: walked distance, clicks & wheels on the web |
Tamanho do Arquivo | 22.48 KB |
Contagem de Instalações | 69 |
Versão Atual | 2.5 |
Última Atualização | 2012-10-31 |
Data de Publicação | 2012-10-31 |
Classificação | 4.75/5 Total de 8 Avaliações |
Desenvolvedor | https://mindon.appspot.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://mindon.appspot.com/ |
URL da Página de Ajuda | http://mindon.appspot.com/ |
URL da Página de Política de Privacidade | https://www.pinqic.com |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Walking in Chrome", "version": "2.5", "manifest_version": 2, "description": "Walking in Chrome: walked distance, clicks & wheels on the web", "icons": { "128": "cyber_128.png" }, "background": { "page": "cyber.html" }, "browser_action": { "default_icon": "cyber_20.png", "default_title": "Walking in Chrome: distance, clicks & wheels on the web", "default_popup": "walk.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "ftp:\/\/*\/*" ], "js": [ "cyber-walk.js" ], "run_at": "document_start", "all_frames": true } ], "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "ftp:\/\/*\/*" ] } |