Textbox Tamer

Textbox Tamer

When you resize a textbox on the web, Textbox Tamer will keep it that way!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Textbox Tamer",
  "short_name": "Textbox Tamer",
  "description": "When you resize a textbox on the web, Textbox Tamer will keep it that way!",
  "version": "1.2",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "permissions": [
    "tabs",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery.min.js",
        "jquery.Autosize.Input.js",
        "gadget.js"
      ],
      "run_at": "document_idle"
    }
  ]
}