Greasy Fork is available in English.

No NetEase Popup 无网易弹窗

Bypass NetEase promotion popup when you visit Minecraft.net in China. 在中国访问 Minecraft.net 时,绕过网易的弹出窗口。

// ==UserScript==
// @name         No NetEase Popup 无网易弹窗
// @namespace    https://gist.github.com/ral-hole/d4a33d94d1284bdf529ddb2c3302ac82
// @version      0.1
// @description  Bypass NetEase promotion popup when you visit Minecraft.net in China. 在中国访问 Minecraft.net 时,绕过网易的弹出窗口。
// @author       Ral Hole
// @match        *://*.minecraft.net/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @license      GPLv3
// ==/UserScript==

(function() {
    'use strict';
    var popup = document.getElementById('popup-btn');
    popup.click();
})();