GetAddress Autocomplete

GetAddress Autocomplete

Add address autocompletion to any textbox.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GetAddress Autocomplete",
  "description": "Add address autocompletion to any textbox.",
  "version": "1.4",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/ga_16.png",
      "32": "/images/ga_32.png",
      "48": "/images/ga_48.png",
      "128": "/images/ga_128.png"
    }
  },
  "icons": {
    "16": "/images/ga_16.png",
    "32": "/images/ga_32.png",
    "48": "/images/ga_48.png",
    "128": "/images/ga_128.png"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "scripting",
    "activeTab"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}