knightnet
New Member
Hi all, first post here.
I have a bookmarklet that I've written that removes all of the tracking data from links on the Google Search page.
I would love to be able to use Adguard to automatically run that on google.com and google.co.uk only. Is there a way to do that?
Many thanks. J.
I have a bookmarklet that I've written that removes all of the tracking data from links on the Google Search page.
JavaScript:
const items = document.getElementsByTagName('a'); for (const i of items) { if ( i.onmousedown || i.getAttribute('data-ved') ) {i.removeAttribute("onmousedown");i.removeAttribute("data-ved")} }
Many thanks. J.