// ==UserScript==
// @name 记录相关的脚本·1
// @namespace https://www.gamemale.com/space-uid-714849.html
// @version 2024-11-27
// @description 跳过了记录中的自动截断和错误字符数计算。比平时塞进更多的东西。
// @author u
// @match https://www.gamemale.com/home.php?*do=doing*
// @icon https://www.gamemale.com/template/mwt2/extend/img/favicon.ico
// @grant none
// ==/UserScript==
(function() {
'use strict';
if(typeof(strLenCalc)=='function'){
strLenCalc=(obj, checklen, maxlen)=>{
let a = obj.value;
let r = a.match(/[\x00-\xFF]/g);
let o = r?r.length:0;
let s = 200-a.length*2+o;
let suki = s<0?`<span style="color:red">${s}</span>`:s;
document.getElementById(checklen).innerHTML=suki;
};
}
})();
//其实是你原本就有这么大