// ==UserScript== // @name Open in same tab - startpage.com // @namespace Violentmonkey Scripts // @match https://www.startpage.com/do/dsearch // @grant none // @version 1.0 // @author _matesko_ // @description 5/26/2021, 9:42:20 AM // @downloadURL none // ==/UserScript== var el = document.querySelectorAll("a.result-link"); el.forEach(e => e.setAttribute("target", "_self"));