diff --git a/javascript/MagicEden-TabName.js b/javascript/MagicEden-TabName.js new file mode 100644 index 0000000..f3281fa --- /dev/null +++ b/javascript/MagicEden-TabName.js @@ -0,0 +1,17 @@ +// ==UserScript== +// @name Magic Eden Set Tab Name To Collection Name +// @namespace http://tampermonkey.net/ +// @version 1.0 +// @description Sets the tab name for MagicEden to the collection name +// @author WTMike24 +// @match https://magiceden.io/marketplace/* +// @icon https://www.google.com/s2/favicons?domain=magiceden.io +// @grant none +// ==/UserScript== + +(function() { + 'use strict'; + + // Your code here... + document.title=$(".tw-mt-4")[1].innerHTML+" - NFT Marketplace" +})();