// ==UserScript== // @name KissAnime mobile // @namespace http://tampermonkey.net/ // @version 0.9.9.6 // @description Try's to make the mobile version of KissAnime more useable // @author You // @match *://*.kissanime.ru/* // @exclude https://kissanime.ru/Special/* // @require https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js // @grant GM_addStyle // @downloadURL none // ==/UserScript== $("head").append ( `
` ); GM_addStyle('*{max-width:100%;}#divReload{position:unset !important;}#subcontent{width:90%;margin-bottom:25px;}#rightside{float:unset !important;}.banner{width:90%;}.bigBarContainer{width:90%;}.scrollable{height: 440px;}'); /* * { max-width: 100%; } #divReload { position: unset !important; } #subcontent { width: 90%; margin-bottom: 25px; } #rightside { float: unset !important; } .banner { width: 90%; } .bigBarContainer { width: 90%; } */ $("img[src$='1.png']").parent().css({ "position": "unset", "float": "right"}); $("img[src$='2.png']").parent().css({ "position": "unset", "float": "right"}); $("img[src$='3.png']").parent().css({ "position": "unset", "float": "right"}); $("img[src$='4.png']").parent().css({ "position": "unset", "float": "right"}); $("img[src$='5.png']").parent().css({ "position": "unset", "float": "right"}); $("img[src$='6.png']").parent().css({ "position": "unset", "float": "right"}); $("img[src$='7.png']").parent().css({ "position": "unset", "float": "right"}); $("img[src$='8.png']").parent().css({ "position": "unset", "float": "right"}); $("img[src$='9.png']").parent().css({ "position": "unset", "float": "right"}); $("img[src$='10.png']").parent().css({ "position": "unset", "float": "right"}); $( "div.scrollable div.items div a:contains('Episode')" ).css( "margin-bottom", "40px" ); $( "div.rightBox:contains('Ongoing series')" ).css( "border", "1px solid #2f2f2f" ); $( "div.rightBox:contains('Latest update')" ).css( "border", "1px solid #2f2f2f" ); $( "div.barTitle:contains('Announcement')" ).parent().css( "border", "none" );