Tags

// ==UserScript==
// @name        tradingview.com/chart/*
// @match       https://www.tradingview.com/chart/*
// ==/UserScript==

(function() {
    'use strict';
    setInterval(function(){
        $("div[data-role=toast-container]").css("display", "none");
        $("div[data-dialog-name=gopro]").css("display", "none");
        $(".hint-29Jv6tZx").css("display", "none");
        $("[class^=toast-wrapper]").css("display", "none");
    }, 2000)
})();