1
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.

google検索の「他の人はこちらも検索」をけすchrome拡張の作成

Last updated at Posted at 2018-03-18

動機

「他の人はこちらも検索」が鬱陶しいので,消したかった.

ソースコード

manifest.json
{
  "name" : "Remove People also search for",
  "version" : "0.1",
  "manifest_version" : 2,
  "description" : "google検索の他の人はこちらも検索を消す",
  "content_scripts" : [{
    "matches" : ["https://www.google.com/*","https://www.google.co.jp/*"],
    "css" : ["remove.css"]
  }]
}
remove.css
div.AUiS2{
    display: none !important;
}

この2つのファイルをおいたディレクトリをパッケージ化されていない拡張機能を読み込むで読みこめば良い

参考

Chrome拡張(4)特定のページで背景画像を変更する - 日常の進捗 - takawo
Remove "People also search for" suggestions that show up below a visited link

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