Skills Highlighter For Linkedin And Indeed

Skills Highlighter For Linkedin And Indeed

Automatically highlights predefined Skills on linkedin/indeed job description.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Skills Highlighter For Linkedin And Indeed",
  "version": "1.1",
  "description": "Automatically highlights predefined Skills on linkedin/indeed job description.",
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "content-marketing.png",
      "48": "content-marketing.png",
      "128": "content-marketing.png"
    }
  },
  "icons": {
    "16": "content-marketing.png",
    "48": "content-marketing.png",
    "128": "content-marketing.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "css/bootstrap.min.css",
        "js/bootstrap.min.js",
        "utils/common.js",
        "crawler.js",
        "background.js",
        "content.js",
        "popup.html",
        "utils/customstyles.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}