updates maxlenghth to infinite
当前为
// ==UserScript==
// @name Update Maxlength
// @namespace update mmaxlength
// @description updates maxlenghth to infinite
// @version 1.0
// @match http://*/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
// Select the input field you want to modify
var inputField = document.getElementById('your-input-field-id');
// Update the maxlength attribute to 99999999
inputField.setAttribute('maxlength', '99999999');
})();