Random Text Generator

Random Text Generator

Insert any amount of fake data to a form field. Easy Peasy

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Random Text Generator",
  "description": "Insert any amount of fake data to a form field. Easy Peasy",
  "version": "1.0.1",
  "browser_action": {
    "default_popup": "popup.html",
    "title": "Random Text Generator"
  },
  "commands": {
    "insert-fake": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "Command+Shift+I",
        "windows": "Ctrl+Shift+F"
      },
      "description": "Insert any amount of fake data to a form field"
    }
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": false,
      "js": [
        "js/content.js"
      ]
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "storage",
    "clipboardRead",
    "clipboardWrite"
  ],
  "icons": {
    "512": "icon/icon_512.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}