// ==UserScript== // @name RARGB Search - YIFY Movies // @namespace https://greasyfork.org/en/users/670188-hacker09?sort=daily_installs // @version 7 // @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 none // ==/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 })();