• Staff Applications are OPEN! [ Staff / Moderator ] More Info HERE Help us make a better forum for everyone!

Watched Threads

Professor Sinister

Ill-behaved Apparently...
The majority of XenForo boards have the "Watched" link easily accessible with a single click. For example:

1745792566674.png


or:

1745792584069.png


or:

1745793659897.png


It's very convenient for people who predominantly come to the forum and look for new posts in the threads they watch. Right now, we need to click Forums ➡️ Click downwards caret ➡️ Scroll to Watched threads ➡️ and click on it.

Would be nice if you could just click the link for the updated watched threads. Using the back button doesn't refresh the thread's read state, so that is why clicking Watched threads is better.

I hope you can add that. In the meantime, or if you don't feel it's useful, users who would like such a feature can implement it themselves with a userscript.

Here is a script i wrote for ViolentMonkey. Obviously, it will also work with TamperMonkey or GreaseMonkey but GreaseMonkey is not maintained anymore so i suggest one of the other two.

JavaScript:
// ==UserScript==
// @name         AllPornComix Link Modifier
// @namespace    https://violentmonkey.github.io/
// @version      0.1
// @description  Modifies the "Read Online" link on forum.allporncomix.com
// @author       Professor Sinister
// @match        https://forum.allporncomix.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const targetLink = document.querySelector('a[href="https://allporncomic.com"][data-nav-id="ReadOnline"]');

    if (targetLink) {
        targetLink.href = 'https://forum.allporncomix.com/watched/threads';
        targetLink.textContent = 'Watched Threads';
    }
})();

This changes the Read Online link to Watched Threads since i am sure most people know all about AllPornComic and probably have it bookmarked.
 
Back
Top Bottom