Form Autopilot

Form Autopilot

Highlights all forms on the current webpage

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Form Autopilot",
  "version": "1.0.4",
  "description": "Highlights all forms on the current webpage",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "scripting",
    "cookies",
    "storage",
    "activeTab",
    "contextMenus"
  ],
  "host_permissions": [
    "https://pablo.priority.app/*",
    "https://formautopilot.com/*",
    "https://dev.formautopilot.com/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon16.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "aiff-inline.css",
        "popup.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}