// ==UserScript== // @name Rotten Tomatoes: JustWatch Link // @description Adds a JustWatch search link to Rotten Tomatoes pages // @version 0.2 // @author mica // @namespace greasyfork.org/users/12559 // @match https://www.rottentomatoes.com/m/* // @match https://www.rottentomatoes.com/tv/* // @license MIT // @downloadURL none // ==/UserScript== var link = 'https://www.justwatch.com/ca/search?q=' + encodeURIComponent(document.title.replace(' - Rotten Tomatoes','')) var html = `
` if (location.pathname.match(/^\/m/g)) { document.querySelector('#topSection section h2').style.clear = 'left' document.querySelector('#topSection section h2').style.paddingTop = '30px' document.querySelector('#topSection section').insertAdjacentHTML('afterbegin', html); } else { document.querySelector('#topSection ~ section h2').style.clear = 'left' document.querySelector('#topSection ~ section h2').style.paddingTop = '30px' document.querySelector('#topSection ~ section').insertAdjacentHTML('afterbegin', html); }