LinkedIn 信息流拦截器
LinkedIn Feed Blocker

原始链接: https://github.com/andrewpollack/linkedin-feed-blocker

“LinkedIn Feed Blocker” 是一款轻量级的 Chrome 浏览器扩展,旨在屏蔽 LinkedIn 主页的信息流,以消除社交干扰,同时保留其在社交、求职和消息收发方面的全部功能。 该扩展通过针对特定的 CSS 元素并拦截与信息流相关的分页请求,从而彻底移除了算法驱动的混乱信息流。它确保了个人资料管理、职位搜索和通知等功能依然能够正常运行。 **安装步骤:** 1. 下载或克隆此存储库到您的电脑。 2. 在浏览器中打开 `chrome://extensions/`。 3. 开启右上角的“开发者模式”。 4. 点击“加载已解压的扩展程序”,并选择该扩展所在的目录。 5. 重新加载 LinkedIn 页面以激活。 代码更新后,需要通过扩展程序菜单进行手动重新加载。该扩展通过隔离 `mainFeed` 选择器和分页请求,在不干扰平台其他功能的前提下,为您提供一个无干扰的专业使用体验。

近期的一场 Hacker News 讨论凸显了用户对 LinkedIn 信息流质量下降的不满。平台上充斥着由人工智能生成的“垃圾内容”、诱导互动的帖子以及无关的推广内容。许多用户难以找到人脉的真实动态,因此开始寻求能够过滤或彻底屏蔽该平台信息流的工具。 参与者分享了多种解决方案,包括自定义浏览器扩展程序和旨在隐藏非必要内容的 uBlock Origin 过滤器。尽管一些用户认为这类扩展程序是在玩“猫鼠游戏”——因为 LinkedIn 会频繁更新网站结构以使其失效,但另一些人认为,定制界面是让该平台变得可用的唯一途径。 这场讨论反映了一种普遍情绪:社交媒体平台正将短期广告收入和“氛围导向”的互动置于实用性之上,从而在无意中贬低了其自身的专业网络价值。最终,用户正越来越多地转向自主开发的工具来夺回数字体验的控制权,通过人工智能生成的代理或自定义 CSS 规则来筛选网络内容,以避开现代算法信息流的干扰。
相关文章

原文

A minimal Chrome extension that disables LinkedIn's home feed while keeping the rest of LinkedIn usable.

  • Hides the entire main feed on /feed
  • Blocks infinite-scroll feed pagination
  • Leaves profiles, jobs, search, messaging, notifications, and other LinkedIn features alone

I like LinkedIn for finding jobs and chatting with recruiters. I do not like being greeted by the wild-west social feed.

After having "experienced" the Before image below, I decided to do something about it. Hence, this extension.

  1. Download or clone this repository somewhere permanent on your computer.

  2. Open Chrome and go to:

  3. Enable Developer mode in the top-right corner.

  4. Click Load unpacked.

  5. Select the linkedin-feed-blocker directory.

  6. Reload LinkedIn.

The extension will remain enabled unless you disable or remove it from chrome://extensions.

After changing manifest.json, rules.json, or feed.css:

  1. Open chrome://extensions
  2. Find LinkedIn Feed Blocker
  3. Click Reload
  4. Reload LinkedIn

Hides LinkedIn's main feed, including the post composer:

[data-testid="mainFeed"] {
  display: none !important;
}

Blocks requests for additional main-feed posts by targeting:

sduiid=com.linkedin.sdui.pagers.feed.mainFeed

The rule intentionally targets LinkedIn's mainFeed pager instead of the generic pagination endpoint, which could interfere with other parts of LinkedIn.

联系我们 contact @ memedata.com