Fake Filler

Fake Filler

A form filler that fills all inputs on a page with fake/dummy data.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "short_name": "__MSG_extensionName_short__",
  "version": "3.3.0",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "64": "images/icon-64.png",
    "96": "images/icon-96.png",
    "128": "images/icon-128.png"
  },
  "permissions": [
    "contextMenus",
    "activeTab",
    "<all_urls>",
    "storage"
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/icon-16.png",
      "32": "images/icon-32.png",
      "48": "images/icon-48.png",
      "64": "images/icon-64.png",
      "96": "images/icon-96.png",
      "128": "images/icon-128.png"
    },
    "default_title": "__MSG_browserActionTitle__"
  },
  "commands": {
    "fill_all_inputs": {
      "description": "__MSG_commands_fillAllInputs__",
      "suggested_key": {
        "default": "Ctrl+Shift+F"
      }
    },
    "fill_this_form": {
      "description": "__MSG_commands_fillThisForm__"
    },
    "fill_this_input": {
      "description": "__MSG_commands_fillThisInput__"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "build/content-script.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "build/background-script.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}