Lorem Fill

Lorem Fill

A webpage form filler that populates context specific random test data into forms elements.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "42!",
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/icon128.png"
  },
  "commands": {
    "trigger_fill_all_forms": {
      "description": "Lorem Fill this page",
      "suggested_key": {
        "default": "Ctrl+Shift+1",
        "mac": "Command+Shift+1"
      }
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/libs/jquery-1.11.3.min.js",
        "js/libs/underscore-min.js",
        "js/libs/backbone-min.js",
        "js/libs/string.js",
        "js/libs/chance.min.js",
        "js/libs/simulant.umd.js",
        "js/models/populate_manager.js",
        "js/models/element.js",
        "js/models/elements.js",
        "js/filler.js",
        "js/models/matchers/null.js",
        "js/models/matchers/person.js",
        "js/models/matchers/web.js",
        "js/models/matchers/payment.js",
        "js/models/matchers/location.js",
        "js/models/matchers/number.js",
        "js/models/matchers/factory.js",
        "js/models/store.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "description": "A webpage form filler that populates context specific random test data into forms elements.",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "incognito": "split",
  "manifest_version": 2,
  "name": "Lorem Fill",
  "offline_enabled": true,
  "options_page": "options.html",
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "short_name": "LoremFill",
  "version": "1.15"
}