Startpage_Air

Startpage, simplified and improved.

اعتبارا من 14-02-2021. شاهد أحدث إصدار.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name     Startpage_Air
// @description    Startpage, simplified and improved.
// @author   Shuswap
// @version  1
// @include  https://*.startpage.com*
// @include  https://startpage.com*
// @run-at   document-start
// @grant    none
// @namespace https://greasyfork.org/users/220598
// ==/UserScript==

(function() {var css = [
	"@namespace url(http://www.w3.org/1999/xhtml);",
  
// change the header color
".header {",
  "background-color:white !important;",
  "}",

// center the results on the page
".header__logo {",
  "width:22% !important;",
  "}",

" .inline-nav-menu-container {",
  "margin-left:25% !important;",
  "}",

" .layout-news__body {",
  "margin-left:25% !important;",
  "}",
  
" .layout-video__body {",
  "margin-left:25% !important;",
  "}",

" .layout-web__body--desktop {",
  "margin-left:25% !important;",
  "}",

// remove the anonymous view icon
" .w-gl__anonymous-view-url {",
  "display:none !important;",
  "}",

// change the URL color to Google green
" .inline-nav-menu__link__active {",
  "color: #1a0dab !important;",
  "}",
  
// set the search result link to Google blue
"h3 {",
  "color: #1a0dab;",
	"}",

// set the page indicators and prev-next buttons to Google blue
".pagination__num:hover {",
  "background-color: #1a0dab !important;",
	"}",

".pagination__next-prev-button:hover {",
  "background-color: #1a0dab !important;",
	"}",

// set the search result URL to Google green 
"a.w-gl__result-url {",
  "color: #006621;",
	"}",

// remove search filter globe icon
".search-filter-region__selected-all-regions-icon {",
  "display:none;",
	"}",

// remove footer
".footer {",
  "display:none;",
	"}",

// remove floating feedback button
".layout-web__feedback-button-container {",
  "display:none;",
	"}",

// remove privacy please menu
".privacy-please__container {",
  "display:none;",
	"}",

// remove "web results" text
".w-gl__label {",
  "display:none;",
	"}",

// remove privacy please menu on homepage
".privacy-please-menu-home {",
  "display:none;",
	"}",

// remove subtitle below search on homepage
".subtitle {",
  "display:none !important;",
	"}",

// remove subtitle below search on homepage
".footer-home-above-fold {",
  "color:white; !important; background-color:white !important",
	"}",

].join("\n");
if (typeof GM_addStyle != "undefined") {
	GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
	PRO_addStyle(css);
} else if (typeof addStyle != "undefined") {
	addStyle(css);
} else {
	var node = document.createElement("style");
	node.type = "text/css";
	node.appendChild(document.createTextNode(css));
	var heads = document.getElementsByTagName("head");
	if (heads.length > 0) {
		heads[0].appendChild(node);
	} else {
		// no head yet, stick it whereever
		document.documentElement.appendChild(node);
	}
}
})();