StandardTickerUnkaputt

Tiggersüchtler Hotfix

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(У мене вже є менеджер скриптів, дайте мені встановити його!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         StandardTickerUnkaputt
// @namespace    https://derstandard.at/
// @version      0.0.3
// @description  Tiggersüchtler Hotfix
// @author       dersansard
// @match        *://*.derstandard.at/*
// @match        *://*.derstandard.de/*
// @grant        none
// @license      MIT
// ==/UserScript==

function showBox(elem) {
    var box;
    for (const box of elem) {
        box.setAttribute('style', 'display:block !important');
        box.style.display="block";
    }
}

function r() {
    if (!(document.getElementsByClassName('js-communityform-input-counter communityform-input-counter'))) return;
    showBox(document.getElementsByClassName('js-communityform-input-counter communityform-input-counter'));
    showBox(document.getElementsByClassName('communityform-input'));
    showBox(document.getElementsByClassName('communityform-input-optiongroup'));
    showBox(document.getElementsByClassName('communityform-footer functions'));
}

(function() {
//  setTimeout(r, 3000);
    setInterval(r, 1000);
 })();