Skip to content

Instantly share code, notes, and snippets.

@book000
Last active March 7, 2023 09:12
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 book000/9c07fe6c13d32427dd482a9554234c6a to your computer and use it in GitHub Desktop.
Save book000/9c07fe6c13d32427dd482a9554234c6a to your computer and use it in GitHub Desktop.
Chrome/Firefoxの拡張機能であるStylusを使用して、google.comの検索ページに表示される住所情報を表示させないCSS
/* ==UserStyle==
@name Delete "Address" from google.com
@namespace tomacheese.com
@version 1.0.0
@updateURL https://gist.github.com/book000/9c07fe6c13d32427dd482a9554234c6a/raw/google.com-hideAddress.user.css
@description Chrome/Firefoxの拡張機能であるStylusを使用して、google.comの検索ページ末尾に表示される住所情報を表示させないCSS
@author Tomachi (book000)
==/UserStyle== */
@-moz-document domain("google.com") {
#swml {
display: none !important;
}
#taw {
display: none !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment