Remove Message on Munzee Map.
目前為
// ==UserScript==
// @name Munzee Map Remove Alert
// @namespace MOBlox
// @version 0.1
// @description Remove Message on Munzee Map.
// @author MOBlox
// @match https://www.munzee.com/map
// @grant none
// ==/UserScript==
(function() {
'use strict';
$('div.alert:contains(Dear Munzee players)').hide()
// Your code here...
})();