Create your AI Cum Slut for Valentine’s Day 60% OFF Now
x

Tool [Userscript] F95zone Board Tools™ (Display Numeric Rating, URL + DocTitle Tweak & more) (WIP)

srfsmrf_

Member
May 24, 2024
436
361
DNRT v0.4.2 (2025-02-14) | SSTUDT v0.0.1 (2025-02-14)

Display Numeric Rating in Thread

Rating display examples. Left: user did not rate, right: user rated the thread.

Description:
The image above says enough I suppose (left: unrated, right: rated).

NB: this userscript will become obsolete at some point, as proper displaying the rating in-thread is planned for the upcoming redesign.

Changelog:
You don't have permission to view the spoiler content. Log in or register now.
Userscript:
You don't have permission to view the spoiler content. Log in or register now.

Stable and Slim Thread URL & Document Title

Description:
JavaScript:
/**
* Example: Getting Intimate [Ch.2 Part B] [MangoWorks]
*
*   normal:
*     title: VN - Ren'Py - Getting Intimate [Ch.2 Part B] [MangoWorks] | F95zone | Adult Games | Comics | Mods | Cheats
*     URL: /threads/getting-intimate-ch-2-part-b-mangoworks.191163/
*
*   tweaked (default settings):
*     title: Getting Intimate [MangoWorks] [VN][Ren'Py] | F95zone
*     URL: /threads/getting-intimate-mangoworks.191163/
*/
Now, e.g., your browser bookmark doesn't go outdated when a new version is published (and gets stored under a slimmer name). See script's README for more info!

Userscript:
You don't have permission to view the spoiler content. Log in or register now.


Enjoy & you're welcome to post issues and/or suggestions.

I may update this silently (just editing the OP), but will post when I think it's relevant (enough).
 
Last edited:
  • Wow
Reactions: rf96

srfsmrf_

Member
May 24, 2024
436
361
Upd 02-16: unified script is coming along nicely. Currently it features the above functionality + #1 from list below. May publish later today or otherwise soon. For ppl that want (a simple solution to) #1 already, see bottom of this post.

---

Note: I'll soonish host these scripts elsewhere, this kinda sucks right. And oh, maybe it makes sense to merge the scripts, calling it 'F95 board tools' or something (thinking of adding a thing or two as well..) Of course you'll be able to configure what to enable then.

Thinking about adding:
  1. revert " | F95zone | Adult Games | Comics | Mods | Cheats" to just " | F95zone" in document title
    • so for every page
  2. copy thread link button in header
    • will (at least) copy as BBcode so you can paste easily elsewhere on the board
    • link text will be (formatted) document title or page heading (at least it will remove ' | F95zone | ....')
  3. search for 'compressed' button in header
  4. add search order preference to quick search (most recent or by relevance)
  5. turn quick search check boxes into radio buttons as they're mutually exclusive options(?)
---

JavaScript:
// ==UserScript==
// @name        F95zone document title old style
// @namespace   srfsmrf@f95
// @match       https://f95zone.to/threads/*
// @grant       none
// @version     1.0 (2025-02-16)
// @author      srfsmrf@F95zone
// @description site name was altered, adding some keywords. This script removes those from the document title (back to just ' | F95zone').
// @homepageURL https://f95zone.to/threads/244455/
// @supportURL  https://f95zone.to/threads/244455/
// @icon        https://external-content.duckduckgo.com/ip3/f95zone.to.ico
// @run-at      document-end
// ==/UserScript==

(()=>{
  // not very foolproof, but it's as minimal as it gets & (for now) it works
  document.title = document.title.replace(' | Adult Games | Comics | Mods | Cheats', '');
})();
 
Last edited: