Greasy Fork is available in English.

取消hamivideo暂停广告

在hamivideo暂停时,不再显示遮挡视频的广告和黑屏。

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name        取消hamivideo暂停广告
// @namespace   gqqnbig
// @match       https://hamivideo.hinet.net/hamivideo/play/*
// @grant       GM_addStyle
// @version     1.0
// @author      gqqnbig
// @description 在hamivideo暂停时,不再显示遮挡视频的广告和黑屏。
// ==/UserScript==

(function() {
    'use strict';
 
    GM_addStyle(`#overlays-ad {
    display:none !important;
}`);
})();