Appearance
编辑
网页允许编辑内容。
javascript:document.body.contentEditable = true编辑表单内容 input 。
javascript:document.querySelector('input[name="name"]').value = document.querySelector('input[name="name"]').value.toUpperCase()编辑表单内容 textarea ,使用正则。
javascript:document.querySelector('textarea[name="content"]').value = document.querySelector('textarea[name="content"]').value.replace(/(?<=:).+/g, '')