Greasy Fork is available in English.

Userstyles.org Redirect to USOArchive

Redirects userstyle.org userstyle pages to USOArchive instead

  1. // ==UserScript==
  2. // @name Userstyles.org Redirect to USOArchive
  3. // @namespace Freeplay
  4. // @version 1.0.2
  5. // @description Redirects userstyle.org userstyle pages to USOArchive instead
  6. // @author Freeplay (https://freeplay.codeberg.page/)
  7. // @include *userstyles.org/styles/*
  8. // @grant none
  9. // @run-at document-start
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. const styleID = window.location.pathname.split('/')[2];
  15. document.location.href = "https://33kk.github.io/uso-archive/?style=" + styleID;
  16. })();