Greasy Fork is available in English.
www.icourse163.org视频暂停的时候隐藏烦人的广告。
// ==UserScript==
// @name 慕课网视频暂停广告隐藏
// @name:zh-CN 慕课网视频暂停广告隐藏
// @description www.icourse163.org 视频暂停的时候隐藏烦人的广告。
// @description:zh-CN www.icourse163.org视频暂停的时候隐藏烦人的广告。
// @namespace http://tampermonkey.net/
// @version 0.1
// @author Slopr
// @include *://www.icourse163.org/*
// @grant none
// 感谢灵感来源本代码修改于作者 Lazyb0x
// ==/UserScript==
(function() {
'use strict';
var style1 = document.createElement('style');
style1.innerHTML = '.ux-modal{display: none !important;}';
style1.innerHTML = '.ux-modal_dialog{display: none !important;}';
style1.innerHTML = '.um-recommend-modal{display: none !important;}';
style1.innerHTML = '.ux-modal-fadeIn{display: none !important;}';
document.head.appendChild(style1);
})();