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 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
Eメール [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"
    ]
}