// ==UserScript== // @name Collage direct links // @namespace https://github.com/po5 // @version 0.1.7 // @description Lets you directly access torrent groups in collages // @author Eva // @icon https://animebytes.tv/favicon.ico // @grant none // @match https://animebytes.tv/collage.php?* // @match https://animebytes.tv/artist.php?* // @match https://animebytes.tv/company.php?* // @match https://animebytes.tv/studio.php?* // @match https://animebytes.tv/bookmarks.php* // @license GPL-3.0 // @run-at document-end // ==/UserScript== document.querySelectorAll('#collage_table a[href^="#group_"]').forEach(link => { link.children[0].setAttribute('hash', link.hash); link.href = document.querySelector(link.hash + ' a[title]').href link.addEventListener('click', event => { if(event.which == 1 && !event.ctrlKey) { window.location.hash = event.target.getAttribute('hash'); event.preventDefault(); } }); });