NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Bigger previews for Hameleon Club // @description Makes bigger preview images in Hameleon Club photo gallery // @namespace http://maestr0.com // @author MA3STR0 // @copyright 2015+, MA3STR0 (http://www.maestr0.com) // @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html // @version 0.1 // @include http://xameleon.club300.com.ua/ru/Page/gallery* // @include http://xameleon.club300.com.ua/en/Page/gallery* // @icon http://xameleon.club300.com.ua/favicon.ico // @oujs:author ma3str0 // ==/UserScript== $$('.gallery-thumbs>a>img').each(function(img){ var new_src = img.getProperty('src').replace('small','big'); img.setProperties({src: new_src, width: '220px', height: 'auto'}); });