Change My Location

Change My Location

Easily change your location to see search results in an other city, state, or country! Great for marketing research.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Change My Location",
  "version": "1.1.1",
  "description": "Easily change your location to see search results in an other city, state, or country!  Great for marketing research.",
  "manifest_version": 3,
  "author": "NDS Digital",
  "icons": {
    "128": "icon.png"
  },
  "action": {
    "default_popup": "index.html",
    "default_title": "Change My Location"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "google-script.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "geolocation"
  ]
}