General How to enable wowhead level scaling thing

Ivo

Dedicated Guide Author
This thing
upload_2022-5-4_20-52-19.png


Install Tampermonkey https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=en

add this code

Code:
// ==UserScript==
// @name         Show Wowhead slider
// @namespace    http://wowhead.com/
// @version      0.1
// @description  Show Wowhead item scaling slider.
// @author       Ivo
// @match        https://www.wowhead.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const style = document.createElement('style');

    style.textContent = `
        .slider {
            display: block !important;
        }
    `;

    document.body.appendChild(style);
})();
 
This works on items that have scalable stats. Doesn't work on something like Destiny for example.
 

Users who are viewing this thread

Top