NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Adult Tracker Cover // @author NiGHTCUM // @description The list page shows the cover images of various Private Adult Tracker // @namespace https://openuserjs.org/users/Kepek // @license MIT // @version 0.1 // @match https://www.happyfappy.org/torrents.php* // @match https://www.empornium.is/torrents.php* // @match https://www.empornium.sx/torrents.php* // @match https://femdomcult.org/torrents.php* // @match https://www.enthralled.me/torrents.php* // @match https://www.homeporntorrents.club/torrents.php* // @match https://kufirc.com/torrents.php* // @compatible Greasemonkey, Tempermonkey // @require https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js // ==/UserScript== // Before use, in Search Center choose categories and click on save button. Enjoy!! // cover image $('#torrent_table td > a').each(function (index, value) { var id = $(value).attr("href"); id = id.replace("/torrents.php?id=", ""); if (typeof unsafeWindow["overlay" + id] !== 'undefined') { var popup = $.parseHTML(unsafeWindow["overlay" + id]); var src = $('img', popup).attr("src"); $(value).append('<div><img src="' + src + '" style="max-width: 300px;"></div>'); } });