From 014c628e5ae9a5e33113f7f7a1230b94e9583b8b Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Fri, 10 Apr 2020 21:03:25 +0300 Subject: [PATCH] new file --- chrome/hide_urlbar_first_row.css | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 chrome/hide_urlbar_first_row.css diff --git a/chrome/hide_urlbar_first_row.css b/chrome/hide_urlbar_first_row.css new file mode 100644 index 0000000..21aae65 --- /dev/null +++ b/chrome/hide_urlbar_first_row.css @@ -0,0 +1,6 @@ +/* Hides the first item in the urlbar dropdown if it is a "search with" or "visit" item. Does not hide "search in private window item", probably */ + +#urlbar[usertyping] .urlbarView-row:not([type]):first-child, +#urlbar[usertyping] .urlbarView-row[type="search"]:first-child { + display: none; +}