Google Maps Language Picker
Allows you to pick google maps language, overriding your default google apps language.
什么是Google Maps Language Picker?
Google Maps Language Picker是由ozma开发的Chrome扩展程序,该扩展的主要功能是“Allows you to pick google maps language, overriding your default google apps language.”。
下载Google Maps Language Picker扩展crx文件
下载Google Maps Language Picker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Google Maps Language Picker |
ID | ppmggddpkpknmapgmoieokbfnpncmble |
官方URL | https://chromewebstore.google.com/detail/google-maps-language-pick/ppmggddpkpknmapgmoieokbfnpncmble |
简介 | Allows you to pick google maps language, overriding your default google apps language. |
文件大小 | 19.45 KB |
安装次数 | 43 |
当前版本 | 0.2.3 |
更新时间 | 2018-08-20 |
上架时间 | 2018-08-19 |
评分 | 5.00/5 共1次评分 |
开发者 | ozma |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" ] } |