Greasy Fork

kanishka 2

messing with kanishka again

// ==UserScript==
// @name        kanishka 2
// @namespace   chriskim06
// @description messing with kanishka again
// @include     https://www.w3schools.com/*
// @version     1.1
// @grant       none
// ==/UserScript==

var x = document.querySelector('.w3-right.w3-hide-small.w3-wide.toptext');
if (x) {
    x.innerText = 'You should be using MDN';
}