UpCat: Upwork Job Alert & ChatGPT Proposals

UpCat: Upwork Job Alert & ChatGPT Proposals

Use A.I. to enhance your job search on Upwork with personalized proposals and real-time alerts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "UpCat: Upwork Job Alert & ChatGPT Proposals",
  "short_name": "UpCat",
  "version": "1.2.8",
  "description": "Use A.I. to enhance your job search on Upwork with personalized proposals and real-time alerts.",
  "action": {
    "default_icon": "images/icon-128.png"
  },
  "background": {
    "service_worker": "assets/service-worker.js"
  },
  "options_ui": {
    "page": "option-ui.html",
    "open_in_tab": true
  },
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "alarms",
    "notifications"
  ],
  "host_permissions": [
    "https://*.upwork.com/*",
    "https://*.openai.com/*",
    "https://*.chatgpt.com/*",
    "https://*.upcat.app/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.upwork.com/ab/proposals/job/*/apply*",
        "https://chat.openai.com/*",
        "https://*.chatgpt.com/*"
      ],
      "js": [
        "assets/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "assets/openai/*"
      ]
    }
  ]
}