Greasy Fork is available in English.

呵呵动漫

呵呵动漫跳过广告

// ==UserScript==
// @name         呵呵动漫
// @namespace    https://github.com/wzhjm/
// @version      1.1
// @license      GPL-3.0
// @description  呵呵动漫跳过广告
// @author       wzhjm
// @match        https://www.hehe.la/player/mui-player.php?*
// @match        https://www.hehe.la/*
// @grant        none
// ==/UserScript==
(function () {
    'use strict';
  	let announce_text=document.getElementsByClassName("announce_text")
    if (announce_text.length>0){
      announce_text[0].remove()
    }
    endclose()
})();