// ==UserScript== // @name Replace Footer Element // @namespace http://tampermonkey.net/ // @version 0.1 // @description Replaces the footer element on the page with the new one. // @author You // @match https://vanced-youtube.neocities.org/2011/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Function to replace the footer element function replaceFooter() { var newFooterHTML = ` `; var footerDiv = document.getElementById("footer"); if (footerDiv) { footerDiv.outerHTML = newFooterHTML; } } // Run the function once the DOM is ready document.addEventListener("DOMContentLoaded", replaceFooter); })();