2
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 3 years have passed since last update.

Twitterの「プロモーションする」を消す

Last updated at Posted at 2021-11-19

こいつを消す

image.png

Chrome拡張機能を使用します。

ディレクトリ構造

./twitter_promotion_remove/
├── manifest.json
└── twitter
    ├── script.js
    └── style.css
manifest.json
{
  "name": "twitter-promotion-remove",
  "author": "Noriaki Oshita",
  "description": "remove twitter promotion.",
  "version": "1.0.0",
  "manifest_version": 2,
  "web_accessible_resources": ["*"],
  "permissions": ["storage"],
  "content_scripts": [
    {
    "matches": ["https://twitter.com/*"],
    "css": ["twitter/style.css"],"js": ["twitter/script.js"]
    }
  ]
}
style.css
a.css-4rbku5.css-18t94o4.css-1dbjc4n.r-1niwhzg.r-sdzlij.r-1phboty.r-rs99b7.r-1loqt21.r-1s2bzr4.r-2yi16.r-1qi8awa.r-1ny4l3l.r-ymttw5.r-o7ynqc.r-6416eg.r-lrvibr {
    display: none;
}

a.css-4rbku5.css-18t94o4.css-1dbjc4n.r-42olwf.r-sdzlij.r-1phboty.r-rs99b7.r-1loqt21.r-c8eef1.r-2yi16.r-1qi8awa.r-1ny4l3l.r-ymttw5.r-o7ynqc.r-6416eg.r-lrvibr {
    display: none;
}
script.js
// 空です

作ったディレクトリをchrome://extensions/にドラッグアンドドロップすれば適用されます。

image.png

ソースコード

参考

2
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
2
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?