Greasy Fork is available in English.

慕课网视频广告隐藏

www.imooc.com 视频暂停的时候隐藏烦人的广告。

// ==UserScript==
// @name                慕课网视频广告隐藏
// @name:zh-CN  	慕课网视频广告隐藏
// @description 	www.imooc.com 视频暂停的时候隐藏烦人的广告。
// @description:zh-CN 	www.imooc.com 视频暂停的时候隐藏烦人的广告。
// @namespace           http://tampermonkey.net/
// @version             0.1
// @author              Lazyb0x
// @include             *://www.imooc.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var style1 = document.createElement('style');
    style1.innerHTML = '#courseVideoPause{display: none !important;}';
    document.head.appendChild(style1);

})();