Skip to content

Instantly share code, notes, and snippets.

@regisbsb
Last active June 3, 2022 22:59
Show Gist options
  • Save regisbsb/c431e92b91470db5f659b3c924d7134d to your computer and use it in GitHub Desktop.
Save regisbsb/c431e92b91470db5f659b3c924d7134d to your computer and use it in GitHub Desktop.
// ==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