var el=document.getElementsByTagName("a");
for(var i=0;i<el.length;++i){
  el[i].setAttribute("title", "");
  el[i].style.textDecoration="none";
  el[i].style.cursor="default";
}
var el=document.getElementsByTagName("p");
for(var i=0;i<el.length;++i){
  el[i].style.cursor="default";
}
var el=document.getElementsByTagName("div");
for(var i=0;i<el.length;++i){
  el[i].style.cursor="default";
}
const styleElement = document.createElement('style');
document.head.appendChild(styleElement);
styleElement.sheet.insertRule('::-webkit-scrollbar { display:none; }');
styleElement.sheet.insertRule('::-webkit-scrollbar-track { display:none; }');
styleElement.sheet.insertRule('::-webkit-scrollbar-thumb { display:none; }');
styleElement.sheet.insertRule('*{scrollbar-width: none;}');

/*
When you see a preview in the Old School Runescape Wiki, click on the settings button. You can choose to have them not shown. If you do that, part of the popup will no longer be present when the mouse is hovering over a link. Usually, popups appear that have information about a subject - like a preview.

Once that part of the adjustment is done, you can load this code in Firefox. Type about:debugging#/runtime/this-firefox in the address bar. Choose Load Temporary Add-on. This JS file is in a folder that also contains a manifest file - whatever that is.

Now whenever you visit oldschool.runescape.wiki the page will be loaded and the script will be run. Press Ctrl + Shift + M in Firefox to load the mobile version of the website. I have enabled touch screen effects. When I use my mouse I can click and drag the screen.

Note: The script will only be run whenever the website is visited during the session that the current Firefox window is open. Once Firefox is closed, the steps will have to be repeated. It is not a permanent change.

https://youtu.be/cKADtXIFJBg

*/