USAJobstimization

USAJobstimization

Helps with searching and applying for jobs!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "USAJobstimization",
  "version": "1.004",
  "description": "Helps with searching and applying for jobs!",
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://extensionpay.com/*",
        "*://*.usajobs.gov/Search/Results*"
      ],
      "js": [
        "ExtPay.js",
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_popup": "popup.html"
  }
}