Paste 'Lorem ipsum...'

Paste 'Lorem ipsum...'

Right click on a text field or textarea to insert the 'lorem ipsum' text.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Paste 'Lorem ipsum...'",
  "description": "Right click on a text field or textarea to insert the 'lorem ipsum' text.",
  "version": "1.0",
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-1.6.4.min.js",
        "content_script.js"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}