Commi

Results 2 comments of Commi

I would like to install revChatGPT on Termux, which depends on curl_cffi. I manually installed curl_cffi with the following modifications: 1. Installed `rust` and `binutils`. 2. Modified `preprocess/download_so.py`, setting `LIBDIR...

将这一段js代码复制到知了的注入JS脚本里,可以在点赞附近新增一个"End",点击实现把分享按钮拉到视野中 ``` (function() { const div = document.querySelector('.Toolbar-customizedArea') let span = document.createElement('span') span.innerText = 'End' span.style.marginLeft = '2em' span.addEventListener('click', () => { document.querySelector('.ZDI--Wechat24').parentElement.scrollIntoView() }) div.appendChild(span) })() ```