LinkOff - LinkedIn Filter and Customizer

LinkOff - LinkedIn Filter and Customizer

No more seeing unwanted likes and comments by your connections. Block the feed or filter it using custom keywords and find the connections and posts you want more easily. Job seeking? Advanced job filtering COMING SOON. Also cleans the inbox!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "LinkOff - Filter and Customizer for LinkedIn™",
  "short_name": "LinkOff",
  "author": "Noah Jelich",
  "version": "1.5.0",
  "description": "LinkOff cleans and customizes LinkedIn. It filters out the junk, leaving behind the posts and page elements that you want to see.",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "js": [
        "content/content.js"
      ],
      "css": [
        "content/content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "icons/forbidden.svg"
  ],
  "browser_action": {
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "https://www.linkedin.com/*",
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{dc212c1b-5965-471e-ac34-56c908222386}"
    }
  }
}