您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
all features below(inside script)
当前为
// ==UserScript== // @name Better Searx White Theme(searx.be) // @namespace - // @version 0.1 // @description all features below(inside script) // @author Not You // @match *://searx.be/* // @grant none // ==/UserScript== /* - Invisible navigation bar - Darker links - Darker categories font and color under them - Darker description */ (function() { let css = ` .searxng-navbar { background: #fff; } .searxng-navbar .instance a { color: #161616; } .searxng-navbar a, .searxng-navbar a:hover { color: #161616; } #categories input[type="checkbox"]:checked + label, .search_categories input[type="checkbox"]:checked + label { border-bottom: #161616 5px solid; } .result-content, .result-format, .result-source { margin-top: 2px; margin-bottom: 0; word-wrap: break-word; color: #505050; font-size: 13px; } .result_header a:hover { color: #161616; } a:focus, a:hover { color: #161616; text-decoration: underline; } #categories input[type="checkbox"]:checked + label, .search_categories input[type="checkbox"]:checked + label { border-bottom: #161616 5px solid; } `; if (typeof GM_addStyle !== "undefined") { GM_addStyle(css); } else { let styleNode = document.createElement("style"); styleNode.appendChild(document.createTextNode(css)); (document.querySelector("head") || document.documentElement).appendChild(styleNode); } })();