Greasy Fork is available in English.

Remove Promoted Tweets

Remove promoted tweets on twitter.com

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         Remove Promoted Tweets
// @namespace    https://github.com/jogerj
// @source       https://gist.github.com/jogerj/333221ea0b5e8e09a051c38a09150127
// @version      0.1
// @description  Remove promoted tweets on twitter.com
// @author       JogerJ
// @author       cb372
// @icon         https://abs.twimg.com/favicons/favicon.ico
// @grant        none
// @match        *://twitter.com/*
// @license      MIT
// ==/UserScript==
var elems = document.getElementsByClassName('tweet')
for (var i=0; i < elems.length; i++) {
  var e = elems[i];
  if (e.nodeName.toLowerCase() == 'div' &&
    e.attributes['data-promoted'] &&
    e.attributes['data-promoted'].value == "true") {
    // Just hiding the elem doesn't work, as this is
    // not actually the elem that gets rendered to screen.
    // Twitter's script will later convert it into
    // another, visible, element.
    //e.style.display = 'none';
    e.parentNode.removeChild(e);
    console.debug('Deleted a promoted tweet', e);
  }
}