// ==UserScript== // @name AH/QQ/SB/SV direct links to Reader Mode // @description Append "/reader/" to forum links if they have a wordcount. // @author C89sd // @version 1.3 // @match https://forums.spacebattles.com/forums/* // @match https://forums.spacebattles.com/search/* // @match https://forums.spacebattles.com/tags/* // @match https://forums.sufficientvelocity.com/forums/* // @match https://forums.sufficientvelocity.com/search/* // @match https://forums.sufficientvelocity.com/tags/* // @match https://forum.questionablequesting.com/forums/* // @match https://forum.questionablequesting.com/search/* // @match https://forum.questionablequesting.com/tags/* // @match https://www.alternatehistory.com/forum/forums/* // @match https://www.alternatehistory.com/forum/search/* // @match https://www.alternatehistory.com/forum/tags/* // @namespace https://greasyfork.org/users/1376767 // @downloadURL none // ==/UserScript== // note: https://forums.spacebattles.com/account/* // https://forums.spacebattles.com/search/* // \ cannot be implemented because there's no wordcount to detect if /reader/ is valid or not. const IS_AH = (window.location.hostname === 'www.alternatehistory.com'); let regex; if (IS_AH) { regex = /^(https:\/\/[^\/]+\/forum\/threads\/[^\/]+\/)/; } else { regex = /^(https:\/\/[^\/]+\/threads\/[^\/]+\/)/; } const threads = document.querySelectorAll('div.structItem, li.block-row'); // forum, search for (const thread of threads) { // old, view as threads var foundCount = false; let wordcountOld = thread.querySelector('li>a[data-xf-click="overlay"]')?.textContent?.trim(); let wordcountNew; let wordcountSearch; if (wordcountOld && wordcountOld.startsWith('Word')) { // (wordcountOld.startsWith('Words: ') || wordcountOld.startsWith('Word Count: '))) { foundCount = true; } else { wordcountNew = thread.querySelector('dl:has(>dd>a[data-xf-click="overlay"])')?.textContent?.trim(); if (wordcountNew && wordcountNew.startsWith('Word')) { foundCount = true; } else { wordcountSearch = thread.querySelector('li>a.wordcount'); if (wordcountSearch) { foundCount = true; } } } let title; if (foundCount) { // Note: // If the code breaks it will probably due to this, as there can be multiple links, // and I may not have :not() excluded all the cases. title = thread.querySelector('div.structItem-title > a:not(.unreadLink):not(.labelLink), h3.contentRow-title > a'); if (title) { const match = title.href.match(regex); if (match) { title.href = match[1] + 'reader/'; } } } // console.log(thread, wordcountOld, wordcountNew, wordcountSearch, foundCount, title) }