Form Tools

Form Tools

Extends the developer tools to debug form fields on the page. Creates a panel to debug all forms. Export form states to JSON.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Form Tools",
  "short_name": "FormTools",
  "version": "1.3.0",
  "description": "Extends the developer tools to debug form fields on the page. Creates a panel to debug all forms. Export form states to JSON.",
  "devtools_page": "devtools.html",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "storage"
  ],
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}