Change GeoLocation

This extension can change(fake) the geo location as you want

什麼是Change GeoLocation?

Change GeoLocation是由yume開發的Chrome擴展程式,該擴展的主要功能是“This extension can change(fake) the geo location as you want”。

擴展截圖

screenshot

下載Change GeoLocation擴展crx文件

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

擴展使用說明

                        This extension overrides the getCurrentPosition() method of Geolocation API in HTML5
Hence current position follows the setting you save in popup menu.

some sites seem not to work correctly as user mentioned in review.
I think its due to the timing the override the current position.
If you have a trouble, please notify the web page where this doesn't work.


FYI, try this site http://html5demos.com/geo                    

擴展基本資訊

名稱 Change GeoLocation Change GeoLocation
ID njjpmclekpigefnogajiknnheheacoaj
官方網址 https://chromewebstore.google.com/detail/change-geolocation/njjpmclekpigefnogajiknnheheacoaj
簡介 This extension can change(fake) the geo location as you want
檔案大小 44.84 KB
安裝次數 7,268
目前版本 1.0
更新時間 2015-08-13
上架時間 2015-08-12
評分 2.27/5 共 67 次評分
開發者 yume
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Change GeoLocation",
    "version": "1.0",
    "manifest_version": 2,
    "description": "This extension can change(fake) the geo location as you want",
    "icons": {
        "16": "icons\/icon.png",
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_title": "Setting",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}