Freelance Pro

Freelance Pro

A chrome extension to help freelancers on Upwork get more jobs and make more money.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Freelance Pro",
  "description": "A chrome extension to help freelancers on Upwork get more jobs and make more money.",
  "_comment": "VERSION_CHANGE",
  "version": "1.1.0",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAogg8uZARKeBARyFdDYllc8R10d0m/8z6Ox815nVYQYg/ASZtO1T+HpEhcaMk5ddKfTPInehyqYQO/30ZM5mrXDhZPNPhmw2CBI3bNiGqTuD02cHkRWCysKPqYdh0I5GVe5uEq5W4Z66FKgdaN9MAXhYYNG4e5gVjlw+M2hRyZApeBDbm0UHo6+Zt3cBIIK8ZAgJJzEBpladl72bkZQ1SNGrx95IQx+qAuNfT2MCy1wqG5ytlc3eqm+0ucaMo8zTWOPnWBuEf4IG+wJQACS4l0VucwA5ycz0B+WVXGAs3ykML4h2w/V2yW+q62+I5Pno0BUBfrDZpkSrv3WAedmdPZQIDAQAB",
  "manifest_version": 3,
  "action": {
    "default_title": "Freelance Pro",
    "default_popup": "index.html"
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "alarms"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.upwork.com/*"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "./scripts/content.js",
        "./scripts/sentry.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/injected/index.html"
      ],
      "matches": [
        "*://*.upwork.com/*"
      ]
    },
    {
      "resources": [
        "/scripts/injected.js"
      ],
      "matches": [
        "*://*.upwork.com/*"
      ]
    },
    {
      "resources": [
        "/injected/*.css"
      ],
      "matches": [
        "*://*.upwork.com/*"
      ]
    },
    {
      "resources": [
        "/injected/*.js"
      ],
      "matches": [
        "*://*.upwork.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "/scripts/background.js"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}