Manual Geolocation

Override HTML5 GeoLocation API and return an arbitrary location.

什么是Manual Geolocation?

Manual Geolocation是由maurice开发的Chrome扩展程序,该扩展的主要功能是“Override HTML5 GeoLocation API and return an arbitrary location.”。

扩展截图

screenshot

下载Manual Geolocation扩展crx文件

下载Manual Geolocation扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension allows you to override the HTML Geolocation in the browser, it can be used for development of HTML Geo location based apps.                    

扩展基本信息

名称 Manual Geolocation Manual Geolocation
ID jpiefjlgcjmciajdcinaejedejjfjgki
官方URL https://chrome.google.com/webstore/detail/manual-geolocation/jpiefjlgcjmciajdcinaejedejjfjgki
简介 Override HTML5 GeoLocation API and return an arbitrary location.
文件大小 1.06 MB
安装次数 20,000
当前版本 1.1.0
更新时间 2019-10-31
上架时间 2019-10-31
评分 2.67/5 共238次评分
开发者 maurice
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "name": "Manual Geolocation",
    "description": "Override HTML5 GeoLocation API and return an arbitrary location.",
    "version": "1.1.0",
    "content_scripts": [
        {
            "js": [
                "fakegeo_content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "blue_dot_circle.png",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/maps.googleapis.com https:\/\/ajax.googleapis.com https:\/\/maps.gstatic.com https:\/\/mts0.googleapis.com https:\/\/mts1.googleapis.com; object-src 'self'",
    "permissions": [
        "geolocation",
        "webNavigation",
        "tabs",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}