Greasy Fork is available in English.

9dm Mask Hidden

Hide number mask!

// ==UserScript==
// @name         9dm Mask Hidden
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Hide number mask!
// @author       FinKiin
// @match        http://www.9damaogames.com/*
// @match        http://www.9damaogame.net/*
// @match        http://www.9damaogames.net/*
// @match        http://www.9dmsgame.com/*
// @match        http://www.9dmsgame.net/*
// @icon         none
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...

    var domain = window.location.hostname;
    if(domain.indexOf('9dm') != -1 || domain.indexOf('9damao') != -1){
        document.querySelector(".my-mask").style.display = "none";
    }
})();