Minecraft Wiki
Advertisement

Documentation may be created at User:Richard01 cze/common.js/doc.

Note: After saving, you have to bypass your browser's cache to see the changes.

Google Chrome, Firefox, Microsoft Edge, and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button.
For details and instructions about other browsers, see Wikipedia:Bypass your cache.

//Replaces Recent Activity with History
var a = document.querySelector('a[href="/wiki/Special:RecentChanges"]');
if (a) {
  a.setAttribute('href', './?action=history')
  a.setAttribute('title', 'History')
  a.removeAttribute('data-tracking')
  a.setAttribute('data-name', 'history')
}
Advertisement