您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Number search results on select Searx instances.
// ==UserScript== // @name Searx - Number Results // @namespace r-a-y/searx/search // @description Number search results on select Searx instances. // @version 1.0.5 // @grant none // @match https://searx.be/* // @match https://search.tuxcloud.net/* // @match https://searx.hlfh.space/* // @match https://search.stinpriza.org/* // @match https://searx.win/* // @match https://search.snopyta.org/* // @match https://searx.prvcy.eu/* // @license GPL v3 // ==/UserScript== var currPage = document.querySelector( '.pull-left input[name="pageno"]' ).getAttribute('value'), results = document.getElementById("main_results").getElementsByTagName("h4"), searxVersion = document.querySelector( 'meta[name="generator"]' ).getAttribute( 'content' ).replace( 'searx/', '' ); currPage = currPage - 1; for ( i = 0, len = results.length; i < len; ++i ) { newSpan = document.createElement( "span" ); newSpan.setAttribute( "style", "float:left; font-weight:600; font-size:.9em !important; display:inline-block; margin-top:2px; margin-right:5px;" ); newContent = document.createTextNode( ( currPage * len + i + 1 ) + ". "); newSpan.appendChild( newContent ); results[i].insertBefore( newSpan, results[i].firstChild ); }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址