0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Twitterのユーザー名を非表示にするブックマークレットの紹介

Last updated at Posted at 2022-11-29

概要

PCのブラウザ版Twitterの画面左下にあるアイコンとかユーザー名を非表示にするブックマークレットを作った
実行すると単純にユーザー名とアイコンが消える
ページを再読み込みすると元に戻る
ちなみに本来ボタンがあったところをクリックすると普通にアカウント切り替えボタンとして動作する
ブックマークレットの使い方に関してはググればいくらでも解説が出てくるのでここでは省略する
なお、全画面表示の状態のChromeでの使用を想定している

ソースコード

2024/01/07追記 : Twitterの仕様変更により取得するdiv要素のクラス名が変更された為、現在の使用に合わせてソースコードを更新した

URL欄へのコピペ用 :

javascript:(function(){const account_menu=document.getElementsByClassName("css-175oi2r r-1awozwy r-sdzlij r-6koalj r-18u37iz r-xyw6el r-1loqt21 r-o7ynqc r-6416eg r-1ny4l3l");account_menu[0].innerHTML="<div id='newdiv'></div>";})();

インデント済み :

javascript: (function () {
    const account_menu = document.getElementsByClassName("css-175oi2r r-1awozwy r-sdzlij r-6koalj r-18u37iz r-xyw6el r-1loqt21 r-o7ynqc r-6416eg r-1ny4l3l");
    account_menu[0].innerHTML = "<div id='newdiv'></div>";
})();
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?