Manual Geolocation

Override HTML5 GeoLocation API and return an arbitrary location.

Cos'è Manual Geolocation?

Manual Geolocation è un'estensione di Chrome sviluppata da maurice, e la sua funzione principale è "Override HTML5 GeoLocation API and return an arbitrary location.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Manual Geolocation

Scarica i file di estensione Manual Geolocation in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Manual Geolocation Manual Geolocation
ID jpiefjlgcjmciajdcinaejedejjfjgki
URL Ufficiale https://chrome.google.com/webstore/detail/manual-geolocation/jpiefjlgcjmciajdcinaejedejjfjgki
Descrizione Override HTML5 GeoLocation API and return an arbitrary location.
Dimensione del File 1.06 MB
Conteggio Installazioni 20,000
Versione Corrente 1.1.0
Ultimo Aggiornamento 2019-10-31
Data di Pubblicazione 2019-10-31
Valutazione 2.67/5 Totale 238 Valutazioni
Sviluppatore maurice
Tipo di Pagamento free
Lingue Supportate 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
    }
}