// ==UserScript== // @name 删除飞书播放页面字幕 // @namespace http://localhost // @version 0.1 // @description 删除飞书播放页面的字幕 // @match *://qqjwmlwomq.feishu.cn/minutes/* // @grant none // @author Hiraly // @license AGPL-3.0-or-later // @downloadURL none // ==/UserScript== (function() { 'use strict'; function waitForLoad(callback) { if (document.readyState === 'complete') { callback(); } else { window.addEventListener('load', callback); } } function removeElement() { var element = document.getElementById('paragraphParentEl'); if (element) { var parent = element.parentNode; parent.removeChild(element); } else { console.log('未找到要删除的元素'); } } waitForLoad(removeElement); })();