Prevent Swedbank from automatically logging out after 5 minutes of inactivity

Hindra swedbank eller sparbankerna från att logga ut en efter en stund

// ==UserScript==
// @name         Prevent Swedbank from automatically logging out after 5 minutes of inactivity
// @namespace    http://tampermonkey.net/
// @version      3
// @description  Hindra swedbank eller sparbankerna från att logga ut en efter en stund
// @author       Oscar Jonsson
// @match        https://online.swedbank.se/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    function mutationEvent(mutationsList, observer) {
        var keepLoggedInBtn=document.querySelector(".mat-dialog-container acorn-modal-section acorn-button-container>acorn-button[label='Stanna kvar']");
        if (keepLoggedInBtn) {
          keepLoggedInBtn.click();
            console.log("keep awake");
        }
    }
    (new MutationObserver(mutationEvent)).observe(document.body, { attributes: true, childList: true, subtree: true });
})();