Библиотека для DTF альбома
Versão de:
Este script não deve ser instalado diretamente. Este script é uma biblioteca de outros scripts para incluir com o diretório meta // @require https://updategf.qytechs.cn/scripts/450146/1085381/DTF%20Album%20library.js
// @namespace https://github.com/TentacleTenticals/DTF console mod
// @grant none
// @version 1.0
// @author Tentacle Tenticals
// @description Библиотека для модификации консоли
// @homepage https://github.com/TentacleTenticals/DTF functions
// @license MIT
// ==/UserScript==
/* jshint esversion:8 */
function consoleMod(){
const log = console.log.bind(console)
console.log = (...args) => {
if(Array.isArray(args)){
if(args[0]){
return args
}
}
log(...args)
}
}