Greasy Fork is available in English.

Runn.io - Toggle Tentative Only

Shows just the tentative stuff if the toggle is on.

// ==UserScript==
// @name         Runn.io - Toggle Tentative Only
// @namespace    https://parall.ax/
// @version      0.1
// @description  Shows just the tentative stuff if the toggle is on.
// @author       James Hall
// @match        https://app.runn.io/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $(document).ready(function() {
        setInterval(function() {
            $('.bp3-switch').each(function () {
                var $elem = $(this);
                if ($elem.data('click-init')) {
                    return true;
                }
                $elem.data('click-init', true);
                $elem.on('click', function () {
                    if($('.bp3-control input').is(':checked')) {
                        setTimeout(function() {
                            $('.sticky-row-wrapper').each(function() {
                                if(!$(this).text().includes('Tentative')) {
                                    $(this).hide();
                                }
                            });
                        }, 200);
                    } else {
                        setTimeout(function() {
                            $('.sticky-row-wrapper').each(function() {
                                $(this).show();
                            });
                        }, 200);
                    }
                });
            });
        }, 1000);

    });
})();