Simplify dict cn 的生词本
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Simplify Dict.cn | |
// @namespace http://mitnk.com | |
// @version 0.1 | |
// @description Simplify dict cn 的生词本 | |
// @match http://scb.dict.cn/card.php* | |
// @copyright 2014+, mitnk | |
// for tampermonkey on Chrome. | |
// ==/UserScript== | |
var ele_list = ['#header', '.scb-card-head', '.top', '.links', '#footer', '.scb-card-foot', '.scb-card-play']; | |
ele_list.forEach(function(item) { | |
document.querySelector(item).style.display = 'none'; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment