Google Maps Language Picker
Allows you to pick google maps language, overriding your default google apps language.
¿Qué es Google Maps Language Picker?
Google Maps Language Picker es una extensión de Chrome desarrollada por ozma, y su función principal es "Allows you to pick google maps language, overriding your default google apps language.".
Descargar Archivo CRX de la Extensión Google Maps Language Picker
Descarga archivos de extensión Google Maps Language Picker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Google Maps Language Picker |
ID | ppmggddpkpknmapgmoieokbfnpncmble |
URL Oficial | https://chromewebstore.google.com/detail/google-maps-language-pick/ppmggddpkpknmapgmoieokbfnpncmble |
Descripción | Allows you to pick google maps language, overriding your default google apps language. |
Tamaño del Archivo | 19.45 KB |
Cantidad de Instalaciones | 43 |
Versión Actual | 0.2.3 |
Última Actualización | 2018-08-20 |
Fecha de Publicación | 2018-08-19 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | ozma |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } |