Upwork ChatGPT

Upwork ChatGPT

Power your Upwork job applications with ChatGPT

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Upwork ChatGPT",
  "action": {
    "default_popup": "popup.html"
  },
  "manifest_version": 3,
  "version": "0.2.8",
  "description": "Power your Upwork job applications with ChatGPT",
  "permissions": [
    "cookies",
    "storage"
  ],
  "host_permissions": [
    "*://*.jobbyrate.com/, *://*.upwork.com/"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.upwork.com/*apply*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ]
}