Google Maps Language Picker

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

Cos'è Google Maps Language Picker?

Google Maps Language Picker è un'estensione di Chrome sviluppata da ozma, e la sua funzione principale è "Allows you to pick google maps language, overriding your default google apps language.".

Scarica il file CRX dell'estensione Google Maps Language Picker

Scarica i file di estensione Google Maps Language Picker 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

                        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                    

Informazioni di Base sull'Estensione

Nome Google Maps Language Picker Google Maps Language Picker
ID ppmggddpkpknmapgmoieokbfnpncmble
URL Ufficiale https://chromewebstore.google.com/detail/google-maps-language-pick/ppmggddpkpknmapgmoieokbfnpncmble
Descrizione Allows you to pick google maps language, overriding your default google apps language.
Dimensione del File 19.45 KB
Conteggio Installazioni 43
Versione Corrente 0.2.3
Ultimo Aggiornamento 2018-08-20
Data di Pubblicazione 2018-08-19
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore ozma
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}