Web Travel

It is a fun extension which tells and shows you how much your browser travlled for any page you visited.

Web Travelคืออะไร?

Web Travel เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://moin.im และคุณลักษณะหลักของมันคือ "It is a fun extension which tells and shows you how much your browser travlled for any page you visited."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Web Travel

ดาวน์โหลดไฟล์ส่วนขยาย Web Travel ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Every time you visit a page on internet (like this page), your browser talks to the server of this page behind the scene.

That server could be anywhere in the world but the talk between browser and server completes in just seconds or even milliseconds.

This extension tells you about the server of current page. Means it tells you the real distance between you and the current page's server. And it even shows your and server location on a map, cool huh?
Think about travelling 10295 KM in 0.982 Seconds. And see the place in map where you just travelled electronically. :)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Web Travel Web Travel
ID omajhbjbphldoeaggmkaboneijfdglff
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/web-travel/omajhbjbphldoeaggmkaboneijfdglff
คำอธิบาย It is a fun extension which tells and shows you how much your browser travlled for any page you visited.
ขนาดไฟล์ 75.2 KB
จำนวนการติดตั้ง 24
เวอร์ชันปัจจุบัน 0.5.3
อัปเดตครั้งล่าสุด 2013-10-07
วันที่เผยแพร่ 2013-10-07
ผู้พัฒนา https://moin.im
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Travel",
    "version": "0.5.3",
    "manifest_version": 2,
    "description": "It is a fun extension which tells and shows you how much your browser travlled for any page you visited.",
    "icons": {
        "16": "icons\/16.png",
        "28": "icons\/28.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png"
    },
    "background": {
        "page": "src\/bg\/bg.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/* ",
                "http:\/\/*\/* "
            ],
            "js": [
                "src\/options_custom\/js\/script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "page_action": {
        "default_title": "Web Travel",
        "default_popup": "src\/options_custom\/map.html",
        "default_icon": {
            "19": "icons\/19.png",
            "38": "icons\/38.png"
        }
    },
    "options_page": "src\/options_custom\/index.html",
    "permissions": [
        "geolocation",
        "tabs",
        "storage",
        "webNavigation",
        "webRequest",
        "https:\/\/*\/* ",
        "http:\/\/*\/* "
    ],
    "content_security_policy": "script-src 'self' https:\/\/maps.google.com https:\/\/google.com; object-src 'self'"
}