Imagetwist BigIMG

显示imagetwist的大图片,方便看图

  1. // ==UserScript==
  2. // @name Imagetwist BigIMG
  3. // @version 0.1
  4. // @description 显示imagetwist的大图片,方便看图
  5. // @author f1tz
  6. // @match http://*.imagetwist.com/th/*/*.jpg
  7. // @grant none
  8. // @namespace https://greasyfork.org/users/172241
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Your code here...
  15. var a = document.location.href.replace('th', 'i');
  16. document.location.href = a;
  17. })();