// ==UserScript== // @name Rateyourmusic Movie Genre Chart Button // @license GPLv3 // @description Adds a button to the top of the movie genre page to open the chart. // @run-at document-start // @match *://rateyourmusic.com/film_genre/* // @version 0.0.1.20220428132648 // @namespace https://greasyfork.org/users/908137 // @downloadURL none // ==/UserScript== function init(f) { let genreName = window.location.pathname .replaceAll("+", "-") .split("/")[2] .toLowerCase(); console.log(genreName); let a = document.createElement("a"); a.innerHTML = "View genre chart"; a.href = `https://rateyourmusic.com/charts/top/film/all-time/g:${genreName}`; a.style = "display: inline-block; float: right;"; f.appendChild(a); } window.addEventListener('load', function () { const frame = document.getElementById("page_breadcrumb"); init(frame); });