Twitter hide ads

Hide ads on Twitter web

As of 24.09.2020. See апошняя версія.

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 or Violentmonkey 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.

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

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         Twitter hide ads
// @version      1.1
// @author       Addie
// @description:en Hide ads on Twitter web
// @match        https://*twitter.com/home
// @grant        GM_addStyle
// @namespace https://greatest.deepsurf.us/users/690175
// @description Hide ads on Twitter web
// ==/UserScript==

'use strict'

const i18n = [
    'Promoted',
    'Sponsored',
    'Sponsorisé',
]

const hideAds = () => {
    [...document.querySelectorAll('[aria-label="Timeline: Your Home Timeline"] article span')]
        .filter( el => i18n.includes(el.innerText.trim()) )
        .map( el => el.closest('[aria-label="Timeline: Your Home Timeline"]>div>div') )
        .forEach( el => {
            if (!el.classList.contains('hidden-by-twitter-hide-ads')) {
                console.log('Ad hidden:');
                console.log(el);
                el.classList.add('hidden-by-twitter-hide-ads');
            }
        });
}

let hideAdsInterval = setInterval(hideAds, 500);

GM_addStyle(`

div.hidden-by-twitter-hide-ads {
    display: none !important;
}

`)