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
    }
}