Email or username:

Password:

Forgot your password?
Григорий Клюшников

Если вас вдруг бесит обходящая блокировщик реклама в сервисах яндекса, я написал юзерскрипт, чтобы её заблокировать:


// ==UserScript==
// @name Yandex direct block
// @version 0.1
// @description try to take over the world!
// @author Grishka
// @match https://*.yandex.ru/*
// @grant none
// @run-at document-start
// ==/UserScript==

(function() {
var orig=document.createElement.bind(document);
document.createElement=function(name){
if(name=="template") throw Error("fuck ads");
return orig(name);
};
})();

@rf@mastodon.ml

1 comment
Григорий Клюшников

Форматирование поломалось. Надо бы по-нормальному поддержать блоки кода (<pre>)

Dmitriy Elets

И куда его привинчивать блядь

Go Up