Custom - hotpornfile.org Improved Search Fields

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.2
// @author      Deanoman
// @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);