Walking in Chrome
Walking in Chrome: walked distance, clicks & wheels on the web
Was ist Walking in Chrome?
Walking in Chrome ist eine Chrome-Erweiterung, die von https://mindon.appspot.com entwickelt wurde, und ihr Hauptmerkmal ist "Walking in Chrome: walked distance, clicks & wheels on the web".
Erweiterungsscreenshots
Walking in Chrome-Erweiterungs-CRX-Datei herunterladen
Laden Sie Walking in Chrome-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
                        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/                     Grundlegende Informationen zur Erweiterung
| Name |   |  
| ID | pacjmfodicicobdolgmgmijclblmmehf | 
| Offizielle URL | https://chromewebstore.google.com/detail/walking-in-chrome/pacjmfodicicobdolgmgmijclblmmehf | 
| Beschreibung | Walking in Chrome: walked distance, clicks & wheels on the web | 
| Dateigröße | 22.48 KB | 
| Installationsanzahl | 69 | 
| Aktuelle Version | 2.5 | 
| Letztes Update | 2012-10-31 | 
| Veröffentlichungsdatum | 2012-10-31 | 
| Bewertung | 4.75/5 Insgesamt 8 Bewertungen | 
| Entwickler | https://mindon.appspot.com | 
| [email protected] | |
| Zahlungsart | free | 
| Erweiterungswebsite | http://mindon.appspot.com/ | 
| Hilfeseite URL | http://mindon.appspot.com/ | 
| URL der Datenschutzrichtlinien-Seite | https://www.pinqic.com | 
| Unterstützte Sprachen | 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:\/\/*\/*"
    ]
}  |  |