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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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:\/\/*\/*"
    ]
}