Form Field Attribute Mapper

Form Field Attribute Mapper

Gathers all input elements on a page and displays their names, IDs, or custom attributes

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Form Field Attribute Mapper",
  "version": "1.1.0",
  "description": "Gathers all input elements on a page and displays their names, IDs, or custom attributes",
  "short_name": "Mapper",
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "background.css"
      ],
      "js": [
        "background.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/icons/favicon-16x16.png",
      "32": "/icons/favicon-32x32.png",
      "96": "/icons/favicon-96x96.png",
      "120": "/icons/apple-icon-120x120.png",
      "144": "/icons/apple-icon-144x144.png",
      "192": "/icons/apple-icon-144x144.png"
    }
  },
  "icons": {
    "16": "/icons/favicon-16x16.png",
    "32": "/icons/favicon-32x32.png",
    "96": "/icons/favicon-96x96.png",
    "120": "/icons/apple-icon-120x120.png",
    "144": "/icons/apple-icon-144x144.png",
    "192": "/icons/apple-icon-144x144.png"
  }
}