Greasy Fork

Greasy Fork is available in English.

古诗文网优化

屏蔽古诗文网登录弹窗和自动展开译文,省略你重复的操作。

当前为 2021-08-28 提交的版本,查看 最新版本

// ==UserScript==
// @name         古诗文网优化
// @namespace    https://github.com/isPoto
// @version      0.2
// @description  屏蔽古诗文网登录弹窗和自动展开译文,省略你重复的操作。
// @author       Poto
// @match        https://so.gushiwen.cn/*/*
// @icon         https://www.google.com/s2/favicons?domain=https://so.gushiwen.cn
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
var object = document.getElementById('hide-center2');
if (object != null){
    object.parentNode.removeChild(object);
}
let trans = document.getElementById("rightbtn46653FD803893E4F3FDDB0646B3C6684");
trans.click();
//$("#rightbtn46653FD803893E4F3FDDB0646B3C6684").click();
    // Your code here...
})();