🏠 

Greasy Fork is available in English.

古诗文网 不弹出登陆界面

屏蔽古诗文网弹出用户登陆界面,可在我的中登录


安装此脚本?
// ==UserScript==
// @name         古诗文网 不弹出登陆界面
// @description  屏蔽古诗文网弹出用户登陆界面,可在我的中登录
// @match        https://*.gushiwen.cn/*
// @version 0.0.1
// @namespace https://greasyfork.org/users/866993
// @license GPL
// ==/UserScript==
function showErweima(){}
addJS_Node (showErweima);
function addJS_Node (text, s_URL, funcToRun, runOnLoad) {
var D                                   = document;
var scriptNode                          = D.createElement ('script');
if (runOnLoad) {
scriptNode.addEventListener ("load", runOnLoad, false);
}
scriptNode.type                         = "text/javascript";
if (text)       scriptNode.textContent  = text;
if (s_URL)      scriptNode.src          = s_URL;
if (funcToRun)  scriptNode.textContent  = '(' + funcToRun.toString() + ')()';
var targ = D.getElementsByTagName ('html')[0] || D.body || D.documentElement;
targ.appendChild (scriptNode);
}