LinkedIn Years of Experience Checker

LinkedIn Years of Experience Checker

This extension checks the years of experience required for a job on LinkedIn.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "LinkedIn Years of Experience Checker",
  "description": "This extension checks the years of experience required for a job on LinkedIn.",
  "version": "1.0.0",
  "permissions": [
    "activeTab",
    "https://www.linkedin.com/*",
    "tabs"
  ],
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "96": "icons/icon96.png"
  },
  "background": {
    "service_worker": "extensions/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "js": [
        "extensions/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "stats.png"
      ],
      "matches": [
        "https://www.linkedin.com/*"
      ]
    }
  ]
}