Greasy Fork is available in English.
try to take over the world!
// ==UserScript==
// @name 12321举报垃圾信息,自动同意,不等60秒
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author CutWaterFlow
// @match https://www.12321.cn/notifyHomePhone
// @grant none
// ==/UserScript==
(function() {
let el = document.getElementById('btnAgree')
el.removeAttribute('disabled')
el.click()
// Your code here...
})();