Dummy Text Generator - Dummy Text Lorem Ipsum

Dummy Text Generator - Dummy Text Lorem Ipsum

To help developers, programmers and testers, this extension allows the user to instantly generate and copy Lorem ipsum ummy text to clipboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "1.1resigned1",
  "name": "Dummy Text Generator - Dummy Text Lorem Ipsum",
  "description": "To help developers, programmers and testers, this extension allows the user to instantly generate and copy Lorem ipsum ummy text to clipboard.",
  "minimum_chrome_version": "18",
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "icon.png",
      "32": "icon.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "background.js"
      ]
    }
  ],
  "permissions": [
    "*://*/*",
    "activeTab",
    "storage",
    "clipboardWrite"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{356d14db-e1c9-488f-9ea3-26e52efe403b}"
    }
  }
}