NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Копирование обложек с xakep.ru // @namespace http://tampermonkey.net/ // @version 0.1 // @description Нажми на обложку, для копирования ее фона // @author You // @match https://xakep.ru/* // @grant none // ==/UserScript== (function() { 'use strict'; document.body.addEventListener("click", function(x){ if(x.target.className !== "bd-container") return console.log("x.className", x.className); var cover = document.querySelector(".bdaia-featured-img-cover"); if(!cover) return console.log("!cover"); var bg = cover.style.backgroundImage; prompt("Ссылка на обложку", bg.substr(5, bg.length - 7)); }); })();