Autofill It

Autofill It

Enable browser autofill for any input field.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Autofill It",
  "description": "Enable browser autofill for any input field.",
  "author": "ygkn <[email protected]>",
  "homepage_url": "https://github.com/ygkn/autofill-it",
  "version": "0.0.1",
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "service_worker": "service-worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_idle",
      "match_about_blank": true
    }
  ],
  "icons": {
    "16": "assets/icons/16.png",
    "48": "assets/icons/48.png",
    "128": "assets/icons/128.png",
    "256": "assets/icons/256.png"
  }
}