Filter upwork projects

Filter upwork projects

List down all countries from upwork jobs listing page , and filter/exclude listed projects from display based on selected countries

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Filter upwork projects",
  "description": "List down all countries from upwork jobs listing page , and filter/exclude listed projects from display based on selected countries",
  "author": "Jaffar Hussain <[email protected]>",
  "version": "1.1",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "Open the popup"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.upwork.com/*"
      ],
      "js": [
        "static/filter-projects.js"
      ]
    }
  ],
  "icons": {
    "16": "logo192.png",
    "48": "logo192.png",
    "128": "logo192.png"
  },
  "permissions": [
    "activeTab"
  ]
}