// ==UserScript== // @name RARGB Search - YIFY Movies // @namespace https://greasyfork.org/en/users/670188-hacker09?sort=daily_installs // @version 8 // @description Adds a button on YTS movie pages to search the movie title on RARGB. // @author hacker09 // @include https://yts.mx/movies/* // @icon https://yts.mx/assets/images/website/apple-touch-icon-180x180.png // @run-at document-end // @grant none // @downloadURL https://update.greasyfork.icu/scripts/492396/RARGB%20Search%20-%20YIFY%20Movies.user.js // @updateURL https://update.greasyfork.icu/scripts/492396/RARGB%20Search%20-%20YIFY%20Movies.meta.js // ==/UserScript== (function() { 'use strict'; document.querySelector(".button-green-download2-big.hidden-xs.hidden-sm").insertAdjacentHTML('afterend', ``); //Adds a button on YTS movie pages to search the movie title RARGB and hides the download modal })();