Prentus | Job Tracker, AI Networking, & Application Helper

Prentus | Job Tracker, AI Networking, & Application Helper

Track jobs. Grow your network. Apply faster with AI. It's time to land your dream job 2x faster.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Prentus | Job Tracker, AI Networking, & Application Helper",
  "description": "Track jobs. Grow your network. Apply faster with AI. It's time to land your dream job 2x faster.",
  "version": "3.0.5",
  "manifest_version": 3,
  "background": {
    "service_worker": "js/sw.js"
  },
  "action": {
    "default_title": "Click to open/close Prentus Job Search Tracker"
  },
  "icons": {
    "16": "img/16.png",
    "24": "img/24.png",
    "32": "img/32.png",
    "48": "img/48.png",
    "64": "img/64.png",
    "128": "img/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/jquery-3.6.1.min.js",
        "js/jquery-ui.min.js",
        "js/content.js",
        "js/frame.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "js/frame.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "*://mail.google.com/*"
      ],
      "js": [
        "js/gmailJsInjector.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "app.html",
        "css/app.css",
        "img/*",
        "js/gmail.js",
        "js/gmailJsLoader.js",
        "dist/extension.js"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage",
    "scripting",
    "cookies"
  ]
}