Finance Autofill Pro

Auto-fill common finance fields (vendor, customer, project, GL code, date) on any website in Microsoft Edge.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Finance Autofill Pro",
  "short_name": "FinAuto",
  "version": "3.0",
  "description": "Auto-fill common finance fields (vendor, customer, project, GL code, date) on any website in Microsoft Edge.",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "action": {
    "default_icon": {
      "16": "icons/icon-16.png",
      "48": "icons/icon-48.png",
      "128": "icons/icon-128.png"
    },
    "default_popup": "popup/popup.html"
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "permissions": [
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content_scripts/autofill.js"
      ]
    }
  ],
  "background": {
    "service_worker": "service-worker.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}