LAZY CURRY

CURRY IS REALLY LAZY

Versión del día 01/11/2021. Echa un vistazo a la versión más reciente.

// ==UserScript==
// @name         LAZY CURRY
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  CURRY IS REALLY LAZY
// @author       You
// @match        http://*/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
const targets = Array.from(document.querySelectorAll('.inner-text')).filter(v => /李亮的空间|管理系统组空间/.test(v.innerText));
if (targets.length) {
  targets.forEach((v, i) => {
    v.parentNode.parentNode.previousElementSibling.click();
  });
}
})();
长期地址
遇到问题?请前往 GitHub 提 Issues。