Add link to EDHRec page of the card being viewed
// ==UserScript==
// @name MtG Stock EDH Rec Link Addition
// @version 0.1
// @description Add link to EDHRec page of the card being viewed
// @author Peter Creutzberger
// @match *://*.mtgstocks.com/prints/*
// @grant none
// @namespace https://www.mtgstocks.com/
// ==/UserScript==
(function() {
'use strict';
addEDHRecLink();
function addEDHRecLink() {
console.log('adding link');
const cleanedName = document.getElementsByClassName('float-start')[0].innerText.split(' (')[0].replace(/\W+/g, '-').toLowerCase();
document.getElementsByClassName('float-start')[0].innerHTML += `\t--\t<a href='https://edhrec.com/cards/${cleanedName}' target='_blank'>EDH Rec Link</a>`;
}
})();