紳士漫畫Redirector

把紳士漫畫網址轉址成slide版,類似於手機板可以連續載入圖片,不用一張一張看

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         紳士漫畫Redirector
// @namespace    http://tampermonkey.net/
// @version      0.4
// @description  把紳士漫畫網址轉址成slide版,類似於手機板可以連續載入圖片,不用一張一張看
// @author       silverair
// @include      https://www.wnacg.org/photos-index*
// @include      https://www.wnacg.com/photos-index*
// @grant        none
// ==/UserScript==

(function() {
    str=location.pathname;
    str=str.replace(/index/g, "slide");
    window.location = "https://www.wnacg.com" +str;
})();