LAZY CURRY

A SHIT PLUGIN

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

// ==UserScript==
// @name         LAZY CURRY
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  A SHIT PLUGIN
// @author       You
// @match        https://km.sankuai.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
const targets = Array.from(document.querySelectorAll('.inner-text')).filter(v => /李亮的空间|管理系统组空间/.test(v.innerText));
console.log(111,targets);
if (targets.length) {
  targets.forEach((v, i) => {
    v.parentNode.parentNode.previousElementSibling.click();
  });
}
})();