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
官方URL 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"
        ]
    }
}