Sleazy Fork is available in English.
Load image from cover/screenshot links.
< Nyaa.si - Load More Thumbnailについてのフィードバック
I found the solution. Add this
addHandler(/^https?:\/\/(hentaicovid\.com)(\/\w+)+/, callback => {
const img = document.querySelector('#fileOriginalModal img')
if(img) {
callback(img.src)
} else {
const btn = document.querySelector('a.continue')
btn && btn.click()
}
}, (url, callback) => {
GM_xmlhttpRequest({
method: 'GET',
url: url,
onload: res => {
const src = res.responseText.match(/"https?:\/\/((hentaicovid\.com)\/uploads\/Application\/storage\/app\/public\/uploads\/users\/.*)"/)
if(src.length > 1) callback("http://"+src[1])
}
})
})
please add hentaicovid.com.
I modified the existing coding myself and used it, but hentaicovid.com does not work.