Untapped Quick Apply

Untapped Quick Apply

Quick apply to thousands of jobs. With Untapped Quick Apply, fill out your job applications in one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Untapped Quick Apply",
  "version": "1.0.4",
  "description": "Quick apply to thousands of jobs. With Untapped Quick Apply, fill out your job applications in one click.",
  "action": {
    "default_icon": {
      "16": "assets/icon16.png",
      "48": "assets/icon48.png",
      "128": "assets/icon128.png"
    },
    "default_title": "Popup Sample",
    "default_popup": "popup/index.html"
  },
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "content-scripts/import-main.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "resources": [
        "assets/*"
      ]
    },
    {
      "resources": [
        "chunks/*-*.js",
        "content-scripts/main.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*",
        "https://www.untapped.io/*"
      ]
    }
  ],
  "permissions": [
    "cookies",
    "tabs"
  ],
  "host_permissions": [
    "https://www.untapped.io/*"
  ]
}