Hide Promoted Jobs

Hide Promoted Jobs

Hides promoted job postings on LinkedIn's job search pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Hide Promoted Jobs",
  "version": "1.4",
  "description": "Hides promoted job postings on LinkedIn's job search pages.",
  "homepage_url": "https://github.com/winterhazel/hide-promoted-jobs",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "browser_style": true,
    "default_icon": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png",
      "48": "icons/icon48.png",
      "64": "icons/icon64.png",
      "128": "icons/icon128.png"
    },
    "default_title": "Toggle Extension"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "js": [
        "js/hide.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/langs.json"
      ],
      "matches": [
        "*://*.linkedin.com/*"
      ]
    }
  ]
}