This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Remove StartPage's sponsored results | |
// @namespace http://tampermonkey.net/ | |
// @version 2025-09-03 | |
// @description Remove top and bottom sponsored results from StartPage searches | |
// @author pdcmoreira | |
// @match https://www.startpage.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=startpage.com | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
window.boot.register("page-ready", () => { | |
const pathSeparator = "/"; | |
const maxGroupsSafeGuard = 100; | |
const getNodeTitleElement = (node) => | |
node.querySelector(".v-list-item__title"); | |
const getNodeTitle = (node) => getNodeTitleElement(node).textContent; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.action { | |
position: relative; | |
height: 30px; | |
&.toggled { | |
&::after { | |
content: ''; | |
position: absolute; | |
bottom: -4px; | |
left: 50%; |