// ==UserScript== // @name LiveChart.me Enhancement's // @namespace https://github.com/as280093/LCE // @version 0.1 // @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); }); })();