LoginSignup
2
4

More than 5 years have passed since last update.

Google検索結果の広告をCSSで消す

Posted at

Google検索の結果の頭の方に出てくる広告、間違えてクリックしませんか?
私はよくします。

なので、これらを消すCSSを考えました。

広告類は、idtawというdiv要素の子要素なので(2017年10月24日現在 horihiro調べ)、こいつをまとめてdisplay: none;にしてしまいます。

#taw {
  display: none;
}

これだけです。
実行するにはStylishなど、自前のCSSを追加適用できる拡張機能を使いましょう。

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