Greasy Fork is available in English.

沪江英语

沪江英语的脚本

// ==UserScript==
// @name 沪江英语
// @description 沪江英语的脚本
// @include     http://www.hjenglish.com/*
// @grant       ao
// @version 0.0.2
// @namespace https://greasyfork.org/users/25818
// ==/UserScript==

(function(){
    // 开始
    var css = '#uzt_footer{display: none;}';
    addGlobalStyle(css);
	
	function addGlobalStyle(css) {
		var head, style;
		head = document.getElementsByTagName('head')[0];
		if (!head) { console.log('插入失败');return; }
		style = document.createElement('style');
		style.type = 'text/css';
		style.innerHTML = css;
		head.appendChild(style);
	}
	
	
	console.log('完成');
	
})()