Upwork AutoFiller

Upwork AutoFiller

Automatically fill your Upwork proposals with a template

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Upwork AutoFiller",
  "description": "Automatically fill your Upwork proposals with a template",
  "version": "2.0",
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "jquery.min.js",
        "options.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "http://www.upwork.com/",
    "https://www.upwork.com/"
  ],
  "options_page": "options.html",
  "browser_action": {
    "default_title": "Autofill this page from template",
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "popup.js"
    ]
  }
}