kemono.user.js を更新

このコミットが含まれているのは:
skscript 2023-10-28 12:49:16 +09:00
コミット 2b896fd9e1
1個のファイルの変更6行の追加0行の削除

ファイルの表示

@ -38,6 +38,12 @@
return {ok: match.groups.userid};
}
else {
document.querySelectorAll(".fanclub-name > a").forEach(element => {
const match = element.href.match(re);
if(match) {
return {ok: match.groups.userid};
}
})
return {err: 'Try again in the top page of this fanclub.\nファンクラブのトップページに移動してからもう一度実行してください'};
}
}