您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Improves the search function of hotpornfile.org by adding the search terms to the search results input box.
// ==UserScript== // @name Custom - hotpornfile.org Improved Search Fields // @namespace Violentmonkey Scripts // @match https://www.hotpornfile.org/?s=* // @match https://www.hotpornfile.org/page/*?s=* // @grant none // @version 1.0.3 // @author KeratosAndro4590 // @description Improves the search function of hotpornfile.org by adding the search terms to the search results input box. // @icon https://www.google.com/s2/favicons?sz=64&domain=hotpornfile.org // @license MIT // ==/UserScript== var url_string = window.location.href; var url = new URL(url_string); var searchText = url.searchParams.get("s"); // Adds search text to field document.getElementById("s").value = searchText; //alert(searchText);