Upwork Smart - Quick Apply Newest Jobs

Upwork Smart - Quick Apply Newest Jobs

Automating the submission of proposals and networking with potential partners for freelancers on Upwork.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Upwork Smart - Quick Apply Newest Jobs",
  "short_name": "Upwork Apply Smart",
  "action": {
    "default_popup": "index.html",
    "default_title": "Upwork Smart"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "description": "Automating the submission of proposals and networking with potential partners for freelancers on Upwork.",
  "icons": {
    "16": "media/upwork-automated.png",
    "48": "media/upwork-automated.png",
    "128": "media/upwork-automated.png"
  },
  "background": {
    "service_worker": "backend/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "frontend/main.js"
      ],
      "matches": [
        "*://*.upwork.com/*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "frontend/define-variables.js"
      ],
      "matches": [
        "*://*.upwork.com/*"
      ],
      "run_at": "document_end",
      "world": "MAIN"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "frontend/locales/*.json"
      ],
      "matches": [
        "*://*.upwork.com/*"
      ]
    }
  ],
  "host_permissions": [
    "*://*.upwork.com/*",
    "*://*.lienlau.com/*",
    "*://*.clickbank.net/*"
  ],
  "manifest_version": 3,
  "permissions": [
    "alarms",
    "activeTab",
    "debugger",
    "tabs",
    "notifications",
    "scripting",
    "storage",
    "unlimitedStorage"
  ],
  "version": "2.14"
}