Manual Geolocation

Override HTML5 GeoLocation API and return an arbitrary location.

Qu'est-ce que Manual Geolocation ?

Manual Geolocation est une extension Chrome développée par maurice, et sa fonction principale est "Override HTML5 GeoLocation API and return an arbitrary location.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Manual Geolocation

Téléchargez les fichiers d'extension Manual Geolocation au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Manual Geolocation Manual Geolocation
ID jpiefjlgcjmciajdcinaejedejjfjgki
URL Officiel https://chrome.google.com/webstore/detail/manual-geolocation/jpiefjlgcjmciajdcinaejedejjfjgki
Description Override HTML5 GeoLocation API and return an arbitrary location.
Taille du Fichier 1.06 MB
Nombre d'Installations 20,000
Version Actuelle 1.1.0
Dernière Mise à Jour 2019-10-31
Date de Publication 2019-10-31
Évaluation 2.67/5 Total 238 Évaluations
Développeur maurice
Type de Paiement free
Langues Prises en Charge 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
    }
}