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