9dm Mask Hidden

hide mask!

当前为 2023-04-13 提交的版本,查看 最新版本

// ==UserScript==
// @name         9dm Mask Hidden
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  hide mask!
// @author       fk
// @match        http://www.9damaogames.com/*
// @match        http://www.9damaogame.net/*
// @icon         none
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...

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

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址