Form Faker

Form Faker

Fill in common form fields with data from the Faker library

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Form Faker",
  "description": "Fill in common form fields with data from the Faker library",
  "version": "1.3.1",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "icons": {
    "16": "assets/dice-16.png",
    "48": "assets/dice-48.png",
    "128": "assets/dice-128.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Fake form data",
    "default_icon": "assets/dice-16.png"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}