Walking in Chrome

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

Walking in Chromeคืออะไร?

Walking in Chrome เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://mindon.appspot.com และคุณลักษณะหลักของมันคือ "Walking in Chrome: walked distance, clicks & wheels on the web"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Walking in Chrome

ดาวน์โหลดไฟล์ส่วนขยาย 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
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:\/\/*\/*"
    ]
}