Google Search Display URL

Display page URLs under the page names (legacy feature).

当前为 2020-03-19 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

/* ==UserStyle==
@name           Google Search Display URL
@name:ja        Google検索 URLを表示
@description    Display page URLs under the page names (legacy feature).
@description:ja 以前のようにページ名の下へURLを表示します。
@namespace      https://greasyfork.org/users/137
@version        1.2.0
@license        MPL-2.0
@contributionURL https://www.amazon.co.jp/registry/wishlist/E7PJ5C3K7AM2
@compatible     Firefox
@compatible     Opera
@compatible     Chrome
@author         100の人
@homepageURL    https://greasyfork.org/scripts/395307
==/UserStyle== */

@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document regexp("https?://www\\.google\\.(?:com|(?:com?\\.)?[a-z][a-z])/(?!maps(?:$|.*)).*") {
	[data-async-context^="query:"] :last-child[data-hveid]:not([id]) > div:first-of-type:not([data-hveid]) {
		--sub-color: darkgreen;

		display: grid;
		grid-template:
			" title title "
			" url   option"
			/ auto  1fr;
	}

	[data-async-context^="query:"] :last-child[data-hveid]:not([id]) cite {
		display: none;
	}

	[data-async-context^="query:"] :last-child[data-hveid]:not([id]) > div:first-of-type > a {
		display: contents;
	}

	[data-async-context^="query:"] :last-child[data-hveid]:not([id]) h3 {
		grid-area: title;
		white-space: nowrap;
	}

	[data-async-context^="query:"] :last-child[data-hveid]:not([id]) > div:first-of-type > a::after {
		grid-area: url;
		content: attr(href);
		color: var(--sub-color);
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	[data-async-context^="query:"] :last-child[data-hveid]:not([id]) > div:first-of-type > div {
		grid-area: option;
		position: unset;
	}

	/*====================================
		Googleブックが通常検索に紛れる問題の対処
	*/
	[data-async-context^="query:"] :last-child[data-hveid]:not([id]) > div:first-of-type > a[href^="https://books.google."] {
		display: block;
		white-space: nowrap;
	}

	[data-async-context^="query:"] :last-child[data-hveid]:not([id]) > div:first-of-type > a[href^="https://books.google."]::after {
		content: none;
 	}
}