Change GeoLocation

This extension can change(fake) the geo location as you want

Vad är Change GeoLocation?

Change GeoLocation är en Chrome-tillägg utvecklad av yume, och dess huvudfunktion är "This extension can change(fake) the geo location as you want".

Tilläggsskärmbilder

screenshot

Ladda ner Change GeoLocation-förlängningens CRX-fil

Ladda ner Change GeoLocation-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This extension overrides the getCurrentPosition() method of Geolocation API in HTML5
Hence current position follows the setting you save in popup menu.

some sites seem not to work correctly as user mentioned in review.
I think its due to the timing the override the current position.
If you have a trouble, please notify the web page where this doesn't work.


FYI, try this site http://html5demos.com/geo                    

Grundläggande Information om Tillägg

Namn Change GeoLocation Change GeoLocation
ID njjpmclekpigefnogajiknnheheacoaj
Officiell webbadress https://chromewebstore.google.com/detail/change-geolocation/njjpmclekpigefnogajiknnheheacoaj
Beskrivning This extension can change(fake) the geo location as you want
Filstorlek 44.84 KB
Antal Installationer 7,268
Aktuell Version 1.0
Senast Uppdaterad 2015-08-13
Publiceringsdatum 2015-08-12
Betyg 2.27/5 Totalt 67 Betyg
Utvecklare yume
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Change GeoLocation",
    "version": "1.0",
    "manifest_version": 2,
    "description": "This extension can change(fake) the geo location as you want",
    "icons": {
        "16": "icons\/icon.png",
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_title": "Setting",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}