Change GeoLocation

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

O que é Change GeoLocation?

Change GeoLocation é uma extensão do Chrome desenvolvida por yume, e sua principal característica é "This extension can change(fake) the geo location as you want".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Change GeoLocation

Baixe arquivos de extensão Change GeoLocation no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Change GeoLocation Change GeoLocation
ID njjpmclekpigefnogajiknnheheacoaj
URL Oficial https://chromewebstore.google.com/detail/change-geolocation/njjpmclekpigefnogajiknnheheacoaj
Descrição This extension can change(fake) the geo location as you want
Tamanho do Arquivo 44.84 KB
Contagem de Instalações 7,268
Versão Atual 1.0
Última Atualização 2015-08-13
Data de Publicação 2015-08-12
Classificação 2.27/5 Total de 67 Avaliações
Desenvolvedor yume
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        ]
    }
}