Greasy Fork is available in English.
Adds a result filter to the top of the results list. This filter is used to show/hide items from the list that exists on the current web page. It will only filter what is on the page locally client side. Default is to show any items that match the typed text, use the INVERT switch to instead hide items that match the typed text. Also defaults to being case insensitive, use the CASE SENSITIVE switch to for sensitivity.
// ==UserScript==
// @name nzbGeekFilter
// @namespace turtle1980.com
// @version 0.1
// @match https://www.nzbgeek.info/geekseek.php*
// @grant none
// @description Adds a result filter to the top of the results list. This filter is used to show/hide items from the list that exists on the current web page. It will only filter what is on the page locally client side. Default is to show any items that match the typed text, use the INVERT switch to instead hide items that match the typed text. Also defaults to being case insensitive, use the CASE SENSITIVE switch to for sensitivity.
// ==/UserScript==
const inputId = "nzbGeekFilter_txt"
let caseSensitive = false
let invert = false
let val = ""
document.querySelector("#multisubmit").insertAdjacentHTML("beforebegin", `
<div style="color: #888; font-weight: 700; display: flex; column-gap: 30px; row-gap: 5px; flex-wrap: wrap; align-items: center; font-family: Verdana, Arial, Sans-Serif; width:100%; max-width:100vw; box-sizing:border-box;">
<div style="color: #CCC; font-weight: 900">
Result Filter
</div>
<div>
<label for="${inputId}_invert">Invert</label>
<input type="checkbox" id="${inputId}_invert" />
<label for="${inputId}_case">Case Sensitive</label>
<input type="checkbox" id="${inputId}_case" />
</div>
<div>
<input id="${inputId}" class="nav_search_input" />
<button id="${inputId}_rst" class="geekseek_button">Clear</button>
</div>
</div>
`)
function resetView() {
document.querySelectorAll(`table.releases`).forEach(r => {
r.style.display = "table"
})
}
function updateView() {
resetView()
if(document.getElementById(inputId)?.value.length > 0) {
document.querySelectorAll(`table.releases`).forEach(r => {
if(caseSensitive) {
if(r.querySelector(`.releases_title`)?.text?.includes(val)) {
r.style.display = invert ? "none" : "table"
} else {
r.style.display = invert ? "table" : "none"
}
} else {
if(r.querySelector(`.releases_title`)?.text?.toLocaleLowerCase().includes(val.toLocaleLowerCase())) {
r.style.display = invert ? "none" : "table"
} else {
r.style.display = invert ? "table" : "none"
}
}
})
}
}
document.getElementById(inputId)?.addEventListener("input", async e => {
if(e.target.value.length > 0) {
val = e.target.value
} else {
val = ""
}
updateView()
})
document.getElementById(inputId + "_rst")?.addEventListener("click", async e => {
document.getElementById(inputId).value = val = ""
resetView()
})
document.getElementById(inputId + "_invert")?.addEventListener("change", async e => {
invert = document.getElementById(inputId + "_invert").checked
updateView()
})
document.getElementById(inputId + "_case")?.addEventListener("change", async e => {
caseSensitive = document.getElementById(inputId + "_case").checked
updateView()
})