twimg_redirect_orig

Redirect twimg to :orig

目前为 2017-11-07 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name twimg_redirect_orig
  3. // @include *://pbs.twimg.com/media/*
  4. // @exclude *://pbs.twimg.com/media/*:orig
  5. // @run-at document-start
  6. // @author eai04191
  7. // @license MIT
  8. // @version 1.1
  9. // @grant none
  10. // @description Redirect twimg to :orig
  11. // @namespace https://greasyfork.org/users/10510
  12. // ==/UserScript==
  13.  
  14. var url = window.document.location + "";
  15. url = url.replace( /(large|medium|small|thumb|&name=)/g, "");
  16. url = url.replace( /\?format=/, ".");
  17. window.location.replace( url + ":orig" );