// ==UserScript== // @name Magistream Facebook Share Fix // @description Fixes the Facebook share button on Magistream creature pages. // @include http://magistream.com/creature/* // @version 1 // @grant GM_addStyle // @namespace https://greasyfork.org/users/63861 // @downloadURL none // ==/UserScript== var newh = "https://www.facebook.com/sharer.php?u=" + window.location.href document.querySelector(".content > a:nth-child(8)").href = newh;