// ==UserScript== // @name Fanfiction.net: Go to Chapter Review Page // @namespace https://greasyfork.org/en/users/163551-vannius // @version 1.0 // @description Replace review links with a link to a review page for the viewing chapter. // @author Vannius // @match https://www.fanfiction.net/s/* // @downloadURL none // ==/UserScript== (function () { 'use strict'; [...document.querySelectorAll('#profile_top a')].forEach(aTag => { if (aTag.href.split('/')[3] === 'r') { aTag.href += window.location.href.split('/')[5] + '/'; } }); })();