FormyMcFormstein OR Hidden Field Enabler

FormyMcFormstein OR Hidden Field Enabler

Identify and enable hidden form input elements.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FormyMcFormstein OR Hidden Field Enabler",
  "description": "Identify and enable hidden form input elements.",
  "version": "1.1.0",
  "author": "Karl Hennigan",
  "browser_action": {
    "default_icon": "favicon-spanner.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "jquery-2.1.1.min.js",
      "extension.css"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "extension.css"
      ],
      "js": [
        "jquery-2.1.1.min.js",
        "background.js"
      ],
      "all_frames": true
    }
  ]
}