// ==UserScript== // @name LinkedIn strangers // @namespace https://lexoyo.me/ // @version 1.2 // @description LinkedIn search display only strangers // @author lexoyo // @match https://www.linkedin.com/search/results/people/* // @updateURL https://gist.github.com/lexoyo/0c83bd42e5091254d54533c88b0dabfe/raw/linkedin-strangers.user.js // @grant none // ==/UserScript== const KEEP_LABELS = ['Se connecter', 'Connect']; (function() { 'use strict'; $('.search-results__total').append(`Attention, user script cache certains contacts`); setInterval(function() { $('.search-result__actions--primary').filter((idx, el) => !KEEP_LABELS.find(label => el.innerText.indexOf(label) > -1)).parents('.search-result').css('display', 'none') }, 1000); })();