Unlock Field Limits

Unlock Field Limits

Enabled all field, Remove 'Max Length' of field

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Mario Gosparini",
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "description": "Enabled all field, Remove 'Max Length' of field",
  "browser_action": {
    "default_icon": {
      "16": "icon.png",
      "19": "icon.png",
      "32": "icon.png",
      "48": "icon48.png",
      "64": "icon64.png",
      "128": "icon.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "hack.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2,
  "name": "Unlock Field Limits",
  "permissions": [
    "cookies",
    "tabs"
  ],
  "version": "2.8"
}