Greasy Fork

Greasy Fork is available in English.

夜曲编程Fucker 就是不绑定手机!

夜曲编程移除要求綁定手機的彈窗

当前为 2022-09-03 提交的版本,查看 最新版本

// ==UserScript==
// @name         夜曲编程Fucker 就是不绑定手机!
// @namespace    https://np.baicizhan.com/
// @version      0.1
// @description  夜曲编程移除要求綁定手機的彈窗
// @author       Athena
// @match        https://np.baicizhan.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=baicizhan.com
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    document.querySelectorAll(("[style*='z-index']")).forEach(element => element.style.zIndex > 1000 ? element.setAttribute("style", "display:none") : null)
})();