Если вас вдруг бесит обходящая блокировщик реклама в сервисах яндекса, я написал юзерскрипт, чтобы её заблокировать:
// ==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
Если вас вдруг бесит обходящая блокировщик реклама в сервисах яндекса, я написал юзерскрипт, чтобы её заблокировать:
// ==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);
};
})();