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?

More than 1 year has passed since last update.

X(旧Twitter)でBADマークを押すスクリプト

Last updated at Posted at 2023-10-12

XのスペースでBADマークを押すスクリプト

X(旧Twitter)のスペースでBADマークを押すスクリプトです。
img要素を変えれば他のマークにも対応すると思います。

// 要素をクリックするコード
var element = document.querySelector('div[aria-label="反応"]');
if (element) {
  element.click(); // 要素をクリック
} else {
  console.log("要素が見つかりません");
}

var imgElement = document.querySelector('img[alt="👎"]'); // 指定の <img> 要素を選択
imgElement.click(); // <img> 要素をクリック

ブックマークレット用

javascript:(function(){var e=document.querySelector('div[aria-label="反応"]');e?e.click():console.log("要素が見つかりません");var t=document.querySelector('img[alt="👎"]');t.click();})();

入れ替えれば使えました
😂😲😢💯👏✊👍👎👋

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?