Sleazy Fork is available in English.

English Only Search

Appends all searches to include only english results.

  1. // ==UserScript==
  2. // @name English Only Search
  3. // @description Appends all searches to include only english results.
  4. // @author HIDDEN-lo
  5. // @version 1.0
  6. // @match *://akuma.moe/*
  7. // @license MIT
  8. // @run-at document-start
  9. // @namespace https://greasyfork.org/users/1206627
  10. // ==/UserScript==
  11.  
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. function updateURLIfNeeded() {
  17. var currentURL = window.location.href;
  18.  
  19. if (currentURL.includes('?q=') && !currentURL.includes('english')) {
  20. var updatedURL = currentURL.replace('?q=', '?q=language%3Aenglish+');
  21.  
  22. window.location.href = updatedURL;
  23. }
  24. }
  25.  
  26. updateURLIfNeeded();
  27. })();