// ==UserScript== // @name Rotten Tomatoes: YouTube Trailer Link // @description Adds a YouTube search link to Rotten Tomatoes pages // @version 0.6 // @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.youtube.com/results?search_query=' + encodeURIComponent(document.title.replace(' - Rotten Tomatoes','')) + ' trailer' $('#topSection').before(`
`);