Skip to content

Instantly share code, notes, and snippets.

@takuya
Last active July 13, 2023 15:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takuya/773a32925cb0551d33aae2c1d44726f0 to your computer and use it in GitHub Desktop.
Save takuya/773a32925cb0551d33aae2c1d44726f0 to your computer and use it in GitHub Desktop.
## 右側ツリー
twitter.com##div[data-testid="sidebarColumn"]
## 右側ツリーのうち、絡んだ人一覧
twitter.com##aside[aria-label="Relevant people"]
## 閲覧回数を消して精神ダメージを減らす。
twitter.com##div:has( > span:contains('Views'))
## 閲覧回数 ( iOS向け )
twitter.com##div[aria-hidden="true"]+div>span>div,div[aria-hidden="true"]+div>span>span
## ツイート分析を消して目立ち欲求を抑える。
twitter.com##a[aria-label*="View Tweet analytics"][role="link"]
## Who to Foller(英語表示時)
twitter.com##div[data-testid='cellInnerDiv']:has( > div:contains("Who to follow") ) ~ div:has(div:contains("Follow"))
## 上の方にある。Live配信
twitter.com##div[role="grid"] >div > nav[aria-live="polite"][role="navigation"]
## ツイート表示のコメントの後ろに表示される おすすめ系で、イライラしないように
twitter.com##:xpath(//div[@data-testid="cellInnerDiv"][.//span[contains(., "Discover more")]]/following-sibling::div)
twitter.com##:xpath(//div[contains(./span, "More Tweets")]/ancestor::h2/parent::div/parent::div/parent::div/following-sibling::div)
## DirectMessageはスパムであふれるので見る必要がない。
## (本当に重要なものは メール通知設定ができるので)
twitter.com##:xpath(//*[@data-testid="DMDrawer"])
## 〇〇がツイートで複数人のアイコンが出てきて邪魔
twitter.com##div[role="status"] div[aria-label^="New Tweets are available"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment