// ==UserScript== // @name Redirect Unity China to Unity3D with Notice // @namespace http://creationwong.xyz // @version 1.0 // @description 将 *.unity.cn 页面重定向到 unity3d.com // @author creationwong // @match https://*.unity.cn/* // @license EPL // @downloadURL none // ==/UserScript== (function () { 'use strict'; const newUrl = 'https://unity3d.com' + window.location.pathname + window.location.search + window.location.hash; // 创建提示条 const notice = document.createElement('div'); notice.style.position = 'fixed'; notice.style.top = '0'; notice.style.left = '0'; notice.style.width = '100%'; notice.style.backgroundColor = '#4CAF50'; notice.style.color = '#fff'; notice.style.textAlign = 'center'; notice.style.padding = '10px 0'; notice.style.zIndex = '9999'; notice.style.fontFamily = 'Arial, sans-serif'; notice.style.fontSize = '16px'; notice.textContent = '正在跳转到 unity3d.com...'; document.body.prepend(notice); setTimeout(() => { window.location.href = newUrl; }, 1000); })();