Add Exp - for Linkedin

Add Exp - for Linkedin

Adds the experience requested in Linkedin job posts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Add Exp - for Linkedin",
  "description": "Adds the experience requested in Linkedin job posts",
  "version": "1.1.1",
  "action": {},
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "icons": {
    "16": "exp.png",
    "48": "exp.png",
    "128": "exp.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/jobs/search/*"
      ],
      "js": [
        "run.js"
      ]
    }
  ]
}