Upwork Jobs Notifier

Upwork Jobs Notifier

This extenstion is made to notify you with Upwork jobs that matches your skills.

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 Jobs Notifier",
  "description": "This extenstion is made to notify you with Upwork jobs that matches your skills.",
  "version": "0.15",
  "content_scripts": [
    {
      "matches": [
        "https://www.upwork.com/*"
      ],
      "js": [
        "jquery.min.js",
        "content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "panel.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "results.json",
        "https://websautomation.com/ebay/result.php",
        "result.php"
      ],
      "matches": [],
      "extension_ids": []
    }
  ],
  "permissions": [
    "storage"
  ]
}