Greasy Fork is available in English.

HumbleBundle show "choose where your money goes" sliders

A quick fix for Humble hiding the sliders to choose where your money goes

// ==UserScript==
// @name         HumbleBundle show "choose where your money goes" sliders
// @namespace    driver8.net
// @version      0.1
// @description  A quick fix for Humble hiding the sliders to choose where your money goes
// @author       driver8
// @match        *://*.humblebundle.com/*
// @run-at       document-body
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    console.log('hi humble');
    let dataScript = document.getElementById('webpack-bundle-data');
    console.log('script', dataScript);
    let data = JSON.parse(dataScript.innerHTML);
    data.bundleVars.hide_sliders = false;
    dataScript.innerHTML = JSON.stringify(data);
})();