Last active
June 3, 2022 22:59
-
-
Save regisbsb/c431e92b91470db5f659b3c924d7134d to your computer and use it in GitHub Desktop.
This file contains 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 RARBGfy Trakt | |
// @namespace https://gist.github.com/regisbsb/ | |
// @version 0.2 | |
// @description Turns IMDB links into RARBG ones | |
// @icon https://walter.trakt.tv/hotlink-ok/public/favicon.ico | |
// @author Regis Bittencourt | |
// @match http://trakt.tv/* | |
// @match https://trakt.tv/* | |
// @grant none | |
// @run-at document-end | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
if(!(document.location.pathname.indexOf('movies') === 1)) | |
{ | |
$(".external a[href^='http://www.imdb.com']").text('RARDB').prop("href", $(".external a[href^='http://www.imdb.com']").prop("href").replace("http://www.imdb.com/title/", "https://rarbg.unblocked.world/tv/")+"/"); | |
} | |
else | |
{ | |
$(".external a[href^='http://www.imdb.com']").text('RARDB').prop("href", $(".external a[href^='http://www.imdb.com']").prop("href").replace("http://www.imdb.com/title/", "https://rarbg.unblocked.world/torrents.php?search=")+"&order=size&by=DESC"); | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment