leetcode cn 2 com

Replace leetcode.cn with leetcode.com

  1. // ==UserScript==
  2. // @name leetcode cn 2 com
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Replace leetcode.cn with leetcode.com
  6. // @author You
  7. // @match https://leetcode.cn/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=leetcode.cn
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. var url = window.location.href;
  16. url = url.replace(".cn", ".com");
  17. window.open(url,"_self");
  18. })();