Full SI Swimsuit images

Auto opens the original/full size image on swimsuit.si.com.

  1. // ==UserScript==
  2. // @name Full SI Swimsuit images
  3. // @match https://swimsuit.si.com/*
  4. // @grant none
  5. // @version 1.1
  6. // @author https://github.com/matts0613
  7. // @description Auto opens the original/full size image on swimsuit.si.com.
  8. // @namespace https://swimsuit.si.com/*
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. if (window.location.href.includes('c_limit')) {
  13. window.location.href = window.location.href.replace('c_limit%2Ccs_srgb%2Cq_auto:good%2Cw_700/', '');
  14. }