// ==UserScript== // @name KissThumbnails // @namespace http://tampermonkey.net/ // @version 0.12 // @description Adds Thumbnails to diverse Kiss sites lists and bookmarks // @author lolamtisch@gmail.com // @license Creative Commons; http://creativecommons.org/licenses/by/4.0/ // @match *://kissanime.ru/BookmarkList* // @match *://kissanime.ru/AnimeList* // @match *://kissanime.ru/Genre* // @match *://kissanime.ru/Status* // @match *://kissanime.ru/Search* // @match *://kissmanga.com/BookmarkList* // @match *://kissmanga.com/MangaList* // @match *://kissmanga.com/Genre* // @match *://kissmanga.com/Status* // @match *://kissmanga.com/Search* // @match *://readcomiconline.to/BookmarkList* // @match *://readcomiconline.to/ComicList* // @match *://readcomiconline.to/Genre* // @match *://readcomiconline.to/Status* // @match *://readcomiconline.to/Search* // @match *://kisscartoon.se/BookmarkList* // @match *://kisscartoon.se/CartoonList* // @match *://kisscartoon.se/Genre* // @match *://kisscartoon.se/Status* // @match *://kisscartoon.se/Search* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; $(".head").prepend(""); $( ".listing tr td:nth-child(1)" ).css("height","150px"); $( ".listing tr td:nth-child(1)" ).before(""); var i=0; $( ".listing tr td:nth-child(2)" ).bind('inview', function (event, visible) { if ($(this).parent("tr").css("display") != "none"){ if (visible === true) { $(this).tooltip().show(); $('.tooltip').css('cssText','opacity: 0 !important'); var title = $(".tooltip").last().find("img")[0].outerHTML; $(this).prev().append(title); $(this).tooltip().hide(); $(this).unbind('inview'); i++; } } }); $(window).scroll(); })(); /** * External Script * author Remy Sharp * url http://remysharp.com/2009/01/26/element-in-view-event-plugin/ */ (function ($) { function getViewportHeight() { var height = window.innerHeight; // Safari, Opera var mode = document.compatMode; if ( (mode || !$.support.boxModel) ) { // IE, Gecko height = (mode == 'CSS1Compat') ? document.documentElement.clientHeight : // Standards document.body.clientHeight; // Quirks } return height; } $(window).scroll(function () { var vpH = getViewportHeight() + 500, scrolltop = (document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop), elems = []; // naughty, but this is how it knows which elements to check for $.each($.cache, function () { if (this.events && this.events.inview) { elems.push(this.handle.elem); } }); if (elems.length) { $(elems).each(function () { var $el = $(this), top = $el.offset().top, height = $el.height(), inview = $el.data('inview') || false; if (scrolltop > (top + height) || scrolltop + vpH < top) { if (inview) { $el.data('inview', false); $el.trigger('inview', [ false ]); } } else if (scrolltop < (top + height)) { if (!inview) { $el.data('inview', true); $el.trigger('inview', [ true ]); } } }); } }); // kick the event to pick up any elements already in view. // note however, this only works if the plugin is included after the elements are bound to 'inview' $(function () { $(window).scroll(); }); })(jQuery);