Created
November 28, 2023 12:47
-
-
Save KoukeNeko/46c53e0a1a2a4d84add525b19b99052d to your computer and use it in GitHub Desktop.
偉X雲端移除煩人浮水印
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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