Greasy Fork is available in English.
噔噔,可以把页面变清爽一点
// ==UserScript==
// @name 樱花动漫:去除广告&点击后直接在当前页播放
// @namespace http://modaiwang.net/
// @version 0.2
// @description 噔噔,可以把页面变清爽一点
// @author You
// @match http://www.imomoe.io/*
// @match http://www.imomoe.in/*
// @grant none
// @require https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js
// ==/UserScript==
(function() {
'use strict';
// Your code here...
$('#adl').remove();
$('#adr').remove();
$('#play_0').next().remove();
$('.side').children('a').remove();
$('.movurls').each(function(index,element){console.log($(element).children().children().children().attr('target','_parent'));});
$('#note').remove();
$('img#close').parents('div').remove();
})();