Simple Autofill

Simple Autofill

Presents a simple dropdown menu for textboxes from a list of preconfigured items.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Simple Autofill",
  "version": "1.0.4",
  "options_page": "options.html",
  "description": "Presents a simple dropdown menu for textboxes from a list of preconfigured items.",
  "icons": {
    "128": "images/autofill.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/autofill19.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "css": [
        "styles/autofill.css"
      ],
      "js": [
        "scripts/autofill.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "permissions": [
    "storage"
  ]
}