Fjords begone

Redirects fjorded e-hentai galleries to their sadpanda version.

  1. // ==UserScript==
  2. // @name Fjords begone
  3. // @namespace Mexiguy
  4. // @author Mexiguy
  5. // @version 1.0
  6. // @description Redirects fjorded e-hentai galleries to their sadpanda version.
  7. // @include http://g.e-hentai.org/*
  8. // @grant none
  9. // @run-at document-start
  10. // ==/UserScript==
  11.  
  12. //Get the page title and URL of the gallery
  13. var title = document.title;
  14. var url = document.location.toString().toLowerCase();
  15.  
  16. //Check if it's fjorded
  17. if (title.search("Gallery Not Available") != -1)
  18. {
  19. document.title = "Redirecting..."
  20. //Change the URL to the sadpanda one and redirect.
  21. url = url.replace("g.e-hentai", "exhentai");
  22. document.location = url;
  23. }