JobMate - Job Application Tracker & Internship Search

JobMate - Job Application Tracker & Internship Search

Track your job applications with the best job search tracker in 2024. With Jobmate you can track all the job and internship…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "JobMate - Job Application Tracker & Internship Search",
  "version": "1.10",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "http://localhost:3000/*",
    "*://*.entryleveljobs.me/*"
  ],
  "permissions": [
    "activeTab",
    "cookies",
    "tabs"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "./image/picker_16.png",
    "32": "./image/picker_32.png",
    "48": "./image/picker_48.png"
  },
  "commands": {
    "open-popup": {
      "suggested_key": {
        "default": "Ctrl+Shift+O"
      },
      "description": "Open the extension popup"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}