Google Maps Language Picker

Google Maps Language Picker

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

Merlin
Additional files are visible only to premium users

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"
  ]
}