Careerdog - The ultimate job application tool

Careerdog - The ultimate job application tool

This plugin is designed for users of the CareerDog website (https://careerdog.ai/). Users primarily follow these steps to use the…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "4.1.1",
  "name": "Careerdog - The ultimate job application tool",
  "manifest_version": 3,
  "action": {
    "default_title": "Careerdog Autofiller"
  },
  "icons": {
    "128": "images/cd-icon-color-128.png"
  },
  "background": {
    "service_worker": "background-wrapper.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "third_party/jquery.min.js",
        "third_party/select2.min.js",
        "content.min.js"
      ],
      "css": [
        "css/selected.css"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "https://*.greenhouse.io/*",
        "https://*.careerdog.ai/*",
        "https://jobs.lever.co/*",
        "<all_urls>"
      ],
      "js": [
        "manager.min.js"
      ],
      "css": [
        "css/ui.css"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "permissions": [
    "scripting",
    "storage",
    "activeTab"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/*",
        "css/*",
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}