JustPaste.it

// ==UserScript==
// @name         Fix Bubble stuck properties editor
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Tampermonkey script - temporarily fixes scrolling by swapping position style
// @author       Misha V
// @match        https://bubble.is/page?name=*&id=*&tab=tabs-1
// @grant        none
// @run-at context-menu
// ==/UserScript==

(function() {
    'use strict';

    // script here...
    var x=document.getElementsByClassName('rows overview')[0];
    if (x) {
        // sends it to the left side out of the box
        x.style.position = "fixed";
        setTimeout(function() {
            var y=document.getElementsByClassName('rows overview')[0];
            if (y) {
                // sends it back to its container
                y.style.position = "absolute";
            }
        }, 50);
    }

})();