Manual Geolocation

Override HTML5 GeoLocation API and return an arbitrary location.

Was ist Manual Geolocation?

Manual Geolocation ist eine Chrome-Erweiterung, die von maurice entwickelt wurde, und ihr Hauptmerkmal ist "Override HTML5 GeoLocation API and return an arbitrary location.".

Erweiterungsscreenshots

screenshot

Manual Geolocation-Erweiterungs-CRX-Datei herunterladen

Laden Sie Manual Geolocation-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Manual Geolocation Manual Geolocation
ID jpiefjlgcjmciajdcinaejedejjfjgki
Offizielle URL https://chrome.google.com/webstore/detail/manual-geolocation/jpiefjlgcjmciajdcinaejedejjfjgki
Beschreibung Override HTML5 GeoLocation API and return an arbitrary location.
Dateigröße 1.06 MB
Installationsanzahl 20,000
Aktuelle Version 1.1.0
Letztes Update 2019-10-31
Veröffentlichungsdatum 2019-10-31
Bewertung 2.67/5 Insgesamt 238 Bewertungen
Entwickler maurice
Zahlungsart free
Unterstützte Sprachen 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
    }
}