Textarea Lift-off

Textarea Lift-off

Lift off the textarea. Make it movable and always stay in the view

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Textarea Lift-off",
  "version": "0.9.0",
  "manifest_version": 2,
  "description": "Lift off the textarea.  Make it movable and always stay in the view",
  "icons": {
    "16": "resources/images/icon16.png",
    "48": "resources/images/icon48.png",
    "128": "resources/images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/jquery-1.8.3.min.js",
        "scripts/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "all_frames": true
    }
  ]
}