Work Alert

Work Alert

Work Alert makes finding Upwork jobs easier. Don't spend hours searching, get notifications when jobs are posted.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Work Alert makes finding Upwork jobs easier. Don't spend hours searching, get notifications when jobs are posted.",
  "version": "5.2",
  "manifest_version": 3,
  "name": "Work Alert",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-sm.png"
  },
  "icons": {
    "128": "icon-sm.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "background",
    "notifications",
    "scripting",
    "storage",
    "webNavigation"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "devtools_page": "devtools.html",
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "icon-sm.png",
        "icon-sm.png"
      ],
      "matches": []
    }
  ]
}