Greasy Fork is available in English.

買科米卡_H是可以的

H是可以的

// ==UserScript==
// @name        買科米卡_H是可以的
// @namespace   MyKomica_WeCanH
// @description H是可以的
// @include     http://*.mymoe.moe/*
// @include     http://*.mykomica.org/*
// @include     https://*.mymoe.moe/*
// @include     https://*.mykomica.org/*
// @author      ID:4cHba7kI
// @version     2nd Edition Ver. 2.33
// @grant       none
// ==/UserScript==
var threads = document.getElementById("threads");
var blocked = threads.querySelectorAll("img[src='https://imgs.moe/h.jpg']");

for(var i in blocked){
	var parent = blocked[i].parentElement;

	if(typeof parent != 'undefined'){
	var imgUrl = parent.href;

	imgUrl = imgUrl.replace("src", "thumb");
	imgUrl = imgUrl.substring(0, imgUrl.lastIndexOf(".")) + "s.jpg";

	var newThumb = imgUrl;
	blocked[i].src = newThumb;
	blocked[i].removeAttribute("style");
}
}