Sift — Minimalist LinkedIn Feed & Blocker

Sift — Minimalist LinkedIn Feed & Blocker

Follow creators, see their posts in a separate feed. Block the default feed. Choose scrolling time & get reports on scrolled time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Sift — Minimalist LinkedIn Feed & Blocker",
  "version": "1.4.3",
  "description": "Follow creators, see their posts in a separate feed. Block the default feed. Choose scrolling time & get reports on scrolled time.",
  "action": {
    "default_popup": "index.html"
  },
  "permissions": [
    "cookies",
    "storage"
  ],
  "host_permissions": [
    "https://app.getsift.so/*",
    "https://www.linkedin.com/*",
    "https://www.sift.scheduled.so/*"
  ],
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; connect-src 'self' https://app.getsift.so"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "tailwind.min.css",
        "styles.css"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://app.getsift.so/*"
    ]
  }
}