Skip to content

Instantly share code, notes, and snippets.

@KoukeNeko
Created November 28, 2023 12:47
Show Gist options
  • Save KoukeNeko/46c53e0a1a2a4d84add525b19b99052d to your computer and use it in GitHub Desktop.
Save KoukeNeko/46c53e0a1a2a4d84add525b19b99052d to your computer and use it in GitHub Desktop.
偉X雲端移除煩人浮水印
// ==UserScript==
// @name 偉X雲端移除煩人浮水印
// @version 0.1
// @description 偉X雲端移除煩人浮水印(姓名帳號IP)
// @author KoukeNeko
// @match https://lino3.way-to-win.com/istudyhc/cloud/video_content_show_fastplay.php
// ==/UserScript==
(function() {
'use strict';
const observer = new MutationObserver(mutations => {
mutations.forEach(() => {
const elements = document.querySelectorAll('.vjs-emre');
elements.forEach(el => el.classList.remove('vjs-emre'));
});
});
observer.observe(document.body, { childList: true, subtree: true });
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment