Google Maps Language Picker

Allows you to pick google maps language, overriding your default google apps language.

O que é Google Maps Language Picker?

Google Maps Language Picker é uma extensão do Chrome desenvolvida por ozma, e sua principal característica é "Allows you to pick google maps language, overriding your default google apps language.".

Baixar o arquivo CRX da Extensão Google Maps Language Picker

Baixe arquivos de extensão Google Maps Language Picker 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

                        If you would like to use one language on google maps while using a different one for the rest of your google apps. 
Just press the icon of this extension, press option and pick your language.
[bug] On some cases it fail to work when redirect from another page, refresh the page or copy the URL to another tab will change the used language                    

Informações Básicas da Extensão

Nome Google Maps Language Picker Google Maps Language Picker
ID ppmggddpkpknmapgmoieokbfnpncmble
URL Oficial https://chromewebstore.google.com/detail/google-maps-language-pick/ppmggddpkpknmapgmoieokbfnpncmble
Descrição Allows you to pick google maps language, overriding your default google apps language.
Tamanho do Arquivo 19.45 KB
Contagem de Instalações 43
Versão Atual 0.2.3
Última Atualização 2018-08-20
Data de Publicação 2018-08-19
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor ozma
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "description": "Allows you to pick google maps language, overriding your default google apps language.",
    "name": "Google Maps Language Picker",
    "version": "0.2.3",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "icons": {
        "16": "logo-16.png",
        "48": "logo-48.png",
        "128": "logo-128.png"
    },
    "browser_action": {
        "default_icon": "logo-128.png",
        "default_popup": "popup.html",
        "default_title": "Google Maps Language Picker"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.google.co.il\/maps\/*",
                "https:\/\/*.google.com\/maps\/*",
                "https:\/\/google.com\/maps\/*",
                "https:\/\/maps.google.com\/maps\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}