// ==UserScript== // @name LiveChart.me Enhancement's // @namespace https://github.com/as280093/LCE // @version 0.2 // @description Adds few featues to enchance LiveChart // @author as280093 // @match https://www.livechart.me/* // @supportURL https://github.com/as280093/LCE/issues // @icon https://raw.githubusercontent.com/as280093/LCE/master/icon.png // @downloadURL none // ==/UserScript== (function () { 'use strict'; //adds kissanime search var text = ''; var aniname = ''; $('div.anime-card').each(function() { aniname = $('h3.main-title', this).text(); text = '
'; $('.anime-info', this).append(text); }); //compact KA button var text_compact = ''; var aniname_compact = ''; $('.schedule-card__overlay-container').each(function() { aniname_compact = $('.schedule-card__title', this).text(); text_compact = 'KA'; $('.schedule-card__actionbar', this).prepend(text_compact); }); })();