Linkedin Promoted Job Hider

Linkedin Promoted Job Hider

This extension hides promoted job postings on linkedin so you can focus on the jobs you are really interested.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Linkedin Promoted Job Hider Extension",
  "version": "1.1",
  "description": "Hides promoted jobs on linkedin",
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "js": [
        "main.js"
      ],
      "runat": "document_end"
    }
  ],
  "host_permissions": [
    "https://www.linkedin.com/*"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "author": "Canklot",
  "homepage_url": "https://github.com/canklot",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    },
    "gecko_android": {
      "id": "[email protected]"
    }
  }
}