您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Block sponsored posts in the LinkedIn feed
- // ==UserScript==
- // @name LinkedIn unsponsored
- // @namespace https://jacobbundgaard.dk
- // @version 1.3
- // @description Block sponsored posts in the LinkedIn feed
- // @match https://www.linkedin.com/feed/*
- // @grant none
- // @inject-into content
- // ==/UserScript==
- (function() {
- 'use strict';
- // Selectors
- const storySelector = '.feed-shared-update-v2';
- const descriptionSelector = '.feed-shared-actor__description, .feed-shared-actor__sub-description';
- // Search strings
- const searchStrings = {
- 'da': ['Promoveret'],
- 'en': ['Promoted'],
- 'es': ['Promocionado'],
- 'fr': ['Post sponsorisé']
- };
- const language = searchStrings.hasOwnProperty(document.documentElement.lang) ? document.documentElement.lang : 'en';
- function blockSponsoredPosts() {
- const stories = document.querySelectorAll(storySelector);
- for (const story of stories) {
- if (story.style.display == 'none') {
- continue;
- }
- const descriptions = story.querySelectorAll(descriptionSelector);
- for (const description of descriptions) {
- const descriptionContent = description.innerText.trim();
- if (searchStrings[language].find(searchString => searchString == descriptionContent)) {
- console.debug('Blocked sponsored story', story);
- story.style.display = 'none';
- }
- }
- }
- }
- const observer = new MutationObserver(blockSponsoredPosts);
- observer.observe(document.body, {
- 'childList': true,
- 'subtree': true
- });
- blockSponsoredPosts();
- })();