Random Location Picker

Random Location Picker

Opens a Gmaps tab with a random location within the specified range of coordinates

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Random Location Picker",
  "description": "Opens a Gmaps tab with a random location within the specified range of coordinates",
  "version": "1.0.1",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "default_title": "Pick random location"
  },
  "background": {
    "service_worker": "background.js"
  }
}