Upwork toolkit - your own freelance assistant

Upwork toolkit - your own freelance assistant

Save time and earn more with Upwork toolkit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Upwork toolkit - your own freelance assistant",
  "description": "Save time and earn more with Upwork toolkit.",
  "version": "1.5.14",
  "icons": {
    "16": "icon/16.png",
    "48": "icon/48.png",
    "128": "icon/128.png"
  },
  "action": {
    "default_icon": "icon/32.png"
  },
  "options_page": "index.html#/options",
  "permissions": [
    "idle",
    "alarms",
    "storage",
    "cookies",
    "offscreen",
    "notifications",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "https://*.upwork.com/",
    "https://api.mixpanel.com/*"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "request_modifier.json"
      }
    ]
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "contentScript.js"
      ],
      "matches": [
        "https://*.upwork.com/ab/proposals/job/*/apply*"
      ]
    }
  ]
}