// ==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"
})();