// ==UserScript== // @name 取消hamivideo暂停广告 // @namespace gqqnbig // @match https://hamivideo.hinet.net/hamivideo/play/* // @grant GM_addStyle // @version 1.0 // @author gqqnbig // @description 在hamivideo暂停时,不再显示遮挡视频的广告和黑屏。 // @downloadURL none // ==/UserScript== (function() { 'use strict'; GM_addStyle(`#overlays-ad { display:none !important; }`); })();