去除天翼账号账号密码登录限制

显示天翼账号登录框账号密码登录按钮

// ==UserScript==
// @name         去除天翼账号账号密码登录限制
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  显示天翼账号登录框账号密码登录按钮
// @author       wuq1
// @license      MIT
// @match        https://open.e.189.cn/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=zhixueyun.com
// @grant        none
// @grant        unsafeWindow
// @grant        GM_getValue
// @grant        GM_setValue
// @grant        GM.deleteValue
// @grant        GM_registerMenuCommand
// @require      https://cdn.jsdelivr.net/npm/jquery@3.5.0/dist/jquery.min.js
// @run-at 		 document-end

// ==/UserScript==

(function() {
    'use strict';
    // var $ = unsafeWindow.jQuery;
    setTimeout(function(){
      let dom = $('#j-accLogin-link');
      dom.removeClass('hide')
    },300)
    // Your code here...
})();