// ==UserScript== // @name Duże zdjęcia wish.com // @description Po kliknięciu na zdjęciu otwiera zdjęcie w nowej karcie // @namespace http://r4v.pl // @include http://wish.com/* https://wish.com/* http://www.wish.com/* https://www.wish.com/* // @version 1.1 // @downloadURL none // ==/UserScript== $("#main-product-image").click(function() { var style = $(this).attr("style"); style = style.replace("background-image: url(", ""); style = style.replace(");", ""); style = style.replace("contest", "original"); window.open(style); })