smartfiller-chrome

smartfiller-chrome

Learns as you fill forms, you will never have to type the same thing twice.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "smartfiller-chrome",
  "description": "Learns as you fill forms, you will never have to type the same thing twice.",
  "version": "1.1",
  "permissions": [
    "tabs",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "jquery-2.1.0.min.js",
      "main.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-2.1.0.min.js",
        "contentscript.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "browser_action": {
    "default_icon": "form.png",
    "default_popup": "background.html"
  }
}