Hide welcome text on voreplay using CSS
// ==UserScript==
// @name Hide Voreplay Welcome Text
// @namespace VoreWolf
// @license MIT
// @version 1.0.1
// @description Hide welcome text on voreplay using CSS
// @match https://www.voreplay.com/*
// @run-at document-start
// ==/UserScript==
(function () {
'use strict';
const hideBlock = () => {
const block = document.getElementById('block7');
if (block) {
block.style.display = 'none';
}
};
hideBlock();
const observer = new MutationObserver(hideBlock);
observer.observe(document.documentElement, {
childList: true,
subtree: true
});
})()