Last active
May 6, 2019 02:54
-
-
Save po5/1d5ca39ea14aa9de904f80c5fcf5684d to your computer and use it in GitHub Desktop.
Revisions
-
po5 revised this gist
May 6, 2019 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ // ==UserScript== // @name Collage direct links // @namespace https://github.com/ewasion // @version 0.1.10 // @description Lets you directly access torrent groups in collages // @author Eva // @homepage https://animebytes.tv/forums.php?action=viewthread&threadid=24213 @@ -21,7 +21,7 @@ document.querySelectorAll('#collage_table a[href^="#group_"]').forEach(link => { link.children[0].setAttribute('hash', link.hash); link.href = document.querySelector(link.hash + ' a[title="View Torrent"]').href link.addEventListener('click', event => { if(event.which == 1 && !event.ctrlKey) { window.location.hash = event.target.getAttribute('hash'); -
po5 revised this gist
Jan 25, 2019 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,11 +1,11 @@ // ==UserScript== // @name Collage direct links // @namespace https://github.com/ewasion // @version 0.1.9 // @description Lets you directly access torrent groups in collages // @author Eva // @homepage https://animebytes.tv/forums.php?action=viewthread&threadid=24213 // @icon https://ptpimg.me/868r51.png // @updateURL https://gist.github.com/po5/1d5ca39ea14aa9de904f80c5fcf5684d/raw/collage-direct-links.user.js // @downloadURL https://gist.github.com/po5/1d5ca39ea14aa9de904f80c5fcf5684d/raw/collage-direct-links.user.js // @grant none @@ -14,6 +14,7 @@ // @match https://animebytes.tv/company.php?* // @match https://animebytes.tv/studio.php?* // @match https://animebytes.tv/bookmarks.php* // @match https://awesome-hd.me/bookmarks.php* // @license GPL-3.0 // @run-at document-end // ==/UserScript== -
po5 revised this gist
Oct 25, 2018 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,13 +1,13 @@ // ==UserScript== // @name Collage direct links // @namespace https://github.com/ewasion // @version 0.1.8 // @description Lets you directly access torrent groups in collages // @author Eva // @homepage https://animebytes.tv/forums.php?action=viewthread&threadid=24213 // @icon https://animebytes.tv/favicon.ico // @updateURL https://gist.github.com/po5/1d5ca39ea14aa9de904f80c5fcf5684d/raw/collage-direct-links.user.js // @downloadURL https://gist.github.com/po5/1d5ca39ea14aa9de904f80c5fcf5684d/raw/collage-direct-links.user.js // @grant none // @match https://animebytes.tv/collage.php?* // @match https://animebytes.tv/artist.php?* -
po5 revised this gist
Oct 19, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ // ==UserScript== // @name Collage direct links // @namespace https://github.com/ewasion // @version 0.1.7 // @description Lets you directly access torrent groups in collages // @author Eva -
po5 revised this gist
Oct 19, 2018 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,7 +4,10 @@ // @version 0.1.7 // @description Lets you directly access torrent groups in collages // @author Eva // @homepage https://animebytes.tv/forums.php?action=viewthread&threadid=24213 // @icon https://animebytes.tv/favicon.ico // @updateURL https://gist.github.com/ewasion/1d5ca39ea14aa9de904f80c5fcf5684d/raw/collage-direct-links.user.js // @downloadURL https://gist.github.com/ewasion/1d5ca39ea14aa9de904f80c5fcf5684d/raw/collage-direct-links.user.js // @grant none // @match https://animebytes.tv/collage.php?* // @match https://animebytes.tv/artist.php?* -
po5 created this gist
Oct 19, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,27 @@ // ==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(); } }); });