Greasy Fork is available in English.

Remove Google Results Redirect

9 lines of code to remove all link redirection on Google Search Results. Prevents tracking and helps load times!

< Feedback op Remove Google Results Redirect

Vraag/Reactie

§
Geplaatst: 23-02-2015

Yandex direct вопрос

Создал скрипт по аналогии с Google для отключения редиректа на yandex'е
Интересно мнение гуру, что не правильно и просто советы:

// ==UserScript==
// @name Remove Yandex Results Redirect
// @include http://yandex.*/yandsearch*
// @grant unsafeWindow
// @version 0.1
// ==/UserScript==

if(unsafeWindow.top == unsafeWindow.self){
document.addEventListener('DOMNodeInserted',function(e){
window.setTimeout(function(){
var rl = document.querySelectorAll('a[onmousedown*="//yandex.ru/clck/jsredir"]');
for (var l=0;l

Reactie plaatsen

Log in om antwoord te geven.