wgy3346hotmail.com / ILikeReading

// ==UserScript==
// @name         ILikeReading
// @namespace    http://tampermonkey.net/
// @version      0.2
// @encoding utf-8
// @license MIT
// @description  try to take over the world!
// @author       You
// @grant        none
// @include https://readingeggs.com
// @include https://readingeggs.com/*
// @include https://*.readingeggs.com
// @include https://*.readingeggs.com/*
// @include https://*readingeggs.com*
// @include https://readingeggsjunior.com
// @include https://readingeggsjunior.com/*
// @include https://*.readingeggsjunior.com
// @include https://*.readingeggsjunior.com/*
// @include https://*readingeggsjunior.com*
// @include https://readingeggspress.com
// @include https://readingeggspress.com/*
// @include https://*.readingeggspress.com
// @include https://*.readingeggspress.com/*
// @include https://*readingeggspress.com*

// @run-at document-end
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    $.removeCookie("locale_redirect", { path: "/" });
    var host = window.location.host;
    if (typeof window.HOSTS !== "undefined" && typeof window.HOSTS.CN !== "undefined"){
      window.HOSTS.CN=host;
    }

})();