Greasy Fork is available in English.

Remove Ads on vc dtf tj

Remove ads on vc dtf tj

// ==UserScript==
// @name         Remove Ads on vc dtf tj
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Remove ads on vc dtf tj
// @author       silantevdenis
// @match        https://vc.ru/*
// @match        https://dtf.ru/*
// @match        https://journal.tinkoff.ru/*
// @grant        none
// @require      https://code.jquery.com/jquery-3.5.1.slim.js
// ==/UserScript==

(function() {
    'use strict';

    $("body *:first").before(
        "<style>"+
           ".propaganda, .sber-countdown, .psb-tax-teaser, .daily-promo-unit, .daily-promo-unit-label { display: none !important; }"+
        "</style>"
        )



})();