Created
July 18, 2018 02:00
-
-
Save dvingerh/b542e22deabcc346f40c1c2e2075c0d7 to your computer and use it in GitHub Desktop.
View freeleech torrents through a fast search link added in the drop-down menu.
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 characters
// ==UserScript== | |
// @name PTP Freeleech Torrent Link | |
// @namespace https://passthepopcorn.me | |
// @version 1.0 | |
// @description View freeleech torrents through a fast search link added in the drop-down menu. | |
// @author Cammy | |
// @match https://passthepopcorn.me/* | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js | |
// @grant MIT | |
// ==/UserScript== | |
jQuery(document).ready(function() { | |
$(".user-info-bar__drop-down-menu").append(`<li class="user-info-bar__drop-down-menu__item"><a class="user-info-bar__drop-down-menu__link" href="torrents.php?action=advanced&freetorrent=1">View Freeleech Torrents</a></li>`); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment