您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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); })();