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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to pick google maps language, overriding your default google apps language."।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Google Maps Language Picker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
    ]
}