Redirect to Bigfile.to from Uploadable.ch

Test version

当前为 2016-09-02 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Redirect to Bigfile.to from Uploadable.ch
  3. // @namespace http://plg4u.blog.fc2.com/
  4. // @version 0.1
  5. // @description Test version
  6. // @author hk
  7. // @match *://uploadable.ch/*
  8. // @match *://www.uploadable.ch/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. window.location.replace((document.location + "").replace("uploadable.ch", "bigfile.to"));
  15. })();