Walking in Chrome

Walking in Chrome: walked distance, clicks & wheels on the web

什麼是Walking in Chrome?

Walking in Chrome是由https://mindon.appspot.com開發的Chrome擴展程式,該擴展的主要功能是“Walking in Chrome: walked distance, clicks & wheels on the web”。

擴展截圖

screenshot
screenshot

下載Walking in Chrome擴展crx文件

下載Walking in Chrome擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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/                    

擴展基本資訊

名稱 Walking in Chrome Walking in Chrome
ID pacjmfodicicobdolgmgmijclblmmehf
官方網址 https://chromewebstore.google.com/detail/walking-in-chrome/pacjmfodicicobdolgmgmijclblmmehf
簡介 Walking in Chrome: walked distance, clicks & wheels on the web
檔案大小 22.48 KB
安裝次數 69
目前版本 2.5
更新時間 2012-10-31
上架時間 2012-10-31
評分 4.75/5 共 8 次評分
開發者 https://mindon.appspot.com
電子郵箱 [email protected]
付費類型 free
擴展官網 http://mindon.appspot.com/
說明頁面URL http://mindon.appspot.com/
隱私政策頁面URL https://www.pinqic.com
支援的語言 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:\/\/*\/*"
    ]
}