Отображает на каждом сайте иконку Яндекс ИКС
// ==UserScript==// @name Яндекс ИКС// @namespace yandexiks// @author Зуенко Михаил// @version 1.5// @include *// @description Отображает на каждом сайте иконку Яндекс ИКС// @run-at document-body// @grant GM_xmlhttpRequest// @connect yandex.ru// ==/UserScript==GM_xmlhttpRequest({method:"GET",url:"https://yandex.ru/cycounter?"+location.hostname,responseType:"arraybuffer",onload:function(xhr){var img = new Image();img.src = URL.createObjectURL(new Blob([new Uint8Array(xhr.response)],{type:"image/png"}));img.style = "position:fixed; right:0; z-index:2000000000000;bottom:0";img.ondragstart = () => false;document.body.append(img);}});