wnacgReader

https://wnacg.org/photos-index* replace -index- to -slide-

  1. // ==UserScript==
  2. // @name wnacgReader
  3. // @version 3.0.0
  4. // @description https://wnacg.org/photos-index* replace -index- to -slide-
  5. // @author Adokun
  6. // @include /^https?:\/\/w*\.?wnacg\.[a-z]*\/photos-index*/
  7. // @grant none
  8. // @namespace http://tampermonkey.net/
  9. // ==/UserScript==
  10.  
  11.  
  12. (function() {
  13. var str = location.href;
  14. str = str.replace(/index/g, 'slide');
  15. window.location = str;
  16. })();