// ==UserScript== // @name Links on Netflix - IMDB, Rotten Tomatoes, Metacritic // @description Add links for searching titles from netflix.com // @version 0.7 // @author mica // @namespace greasyfork.org/users/12559 // @include https://www.netflix.com/browse* // @include https://www.netflix.com/title/* // @require https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js // @grant none // @license MIT // @downloadURL none // ==/UserScript== $('head').append(` `); var url; setInterval(function() { if (url != location.href) { url = location.href; $('#sbox').remove(); setTimeout(function() { var title = $('.about-header > h3 > strong').text(); var mc = 'https://www.metacritic.com/search/all/' + encodeURIComponent(title.replace(/\*|\//g,' ')) + '/results'; var imdb = 'https://www.imdb.com/find?s=tt&ref_=fn_tt&q=' + encodeURIComponent(title); var rt = 'https://www.rottentomatoes.com/search/?search=' + encodeURIComponent(title); $('[data-uia|="videoMetadata--container"]:first').append([ $('