Jump to content

MediaWiki:Common.js: Difference between revisions

From OkayXairen Wiki
imported>BigGarrison
TOO RED
nvm couldn't get it to work
Tag: Manual revert
 
(8 intermediate revisions by 5 users not shown)
Line 1: Line 1:
// we should make this into a wiki forpeople doing recreational birth control pills
if (window.location.href.includes("The_Bold_Plague")) {
// What. Who are you Ballswoman? Stop reverying my changers.
     const style = document.createElement("style");
alert("This Is War, Ballswoman");
     style.textContent = `
setInterval(() => {
        * {
     const randomNumber = Math.floor(Math.random() * 20) + 1;
            font-weight: bold !important;
      
        }
    if (randomNumber === 10) {
    `;
        location.reload();
    document.head.appendChild(style);
    }
}
}, 1000);
(function() {
  const css = `

Latest revision as of 18:33, 11 March 2026

if (window.location.href.includes("The_Bold_Plague")) {
    const style = document.createElement("style");
    style.textContent = `
        * {
            font-weight: bold !important;
        }
    `;
    document.head.appendChild(style);
}