您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
utility methods
当前为
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.greasyfork.icu/scripts/393085/753841/CommonsUtil.js
// ==UserScript== // @author gaojr // @namespace https://github.com/gaojr/tampermonkey-scripts // @name:CN-zh_cn 工具类 // @name CommonsUtil // @version 0.1 // @description utility methods // @grant none // ==/UserScript== /** * 输出错误 * @param functionName 方法名 * @param selector 选择器 * @param error 错误 */ const error = function (functionName, selector, error) { console.error('function name: ' + functionName + "\nselector: " + selector + "\nerror: " + error); }; /** * 点击选择器对象 * @param selector 选择器 */ const clickIt = function (selector) { try { document.querySelector(selector).click(); } catch (e) { error('clickIt', selector, e); } }; /** * 移除选择器对象 * @param selector 选择器 */ const removeIt = function (selector) { try { document.querySelector(selector).remove(); } catch (e) { error('removeIt', selector, e); } }; /** * 移除选择器所有对象 * @param selector 选择器 */ const removeAll = function (selector) { try { document.querySelectorAll(selector).forEach(function (e) { e.remove(); }); } catch (e) { error('removeAll', selector, e); } };