You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
536 B

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