// ==UserScript== // @name Rotten Tomatoes: JustWatch Link // @description Adds a JustWatch search link to Rotten Tomatoes pages // @version 0.1 // @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','')) $('#topSection').before(`
`);