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
官方網址 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
    }
}