10/05/16 20:27:10 I+3eaibT0
Pixivのマンガ機能のスライド飛ばして、サムネイルに飛ぶのを書いてみたんだけど。
こんな感じでいいのかな? 見よう見まねで初めてだから、どっか微妙な気がする……
もう誰か作ってるやつがあるか、こうした方がいいってのがあれば教えてください。
// @include URLリンク(www.pixiv.net)
(function(){
var illustid = location.href.match(/\d+/);
var regexp = new RegExp(/member_illust.php\?mode\=manga\&illust_id\=(.+)/);
var anchors = document.getElementsByTagName("a");
for (var i = 0; i < anchors.length; i++) {
if (anchors[i].href && anchors[i].href.match(regexp)) {
anchors[i].href = anchors[i].href.replace(regexp, "member_illust.php?mode=manga_tb&illust_id=" + illustid);
}
}
})();