7peanuts
7peanuts
感谢 > 2. 应该不容易误操作的啊,这是个二级菜单,你不操作发送也不会去点开它 因为要用“添加到”,但是偶尔会手滑点到“发送到” 😂 > 3. 歌词问题只能向组件作者反馈了:https://github.com/ESLyric/feedback 才知道这个,我去反馈下
看来没人维护这个项目了 用这个吧 https://github.com/dessant/search-by-image
> 这个有安卓APP吗?或者考虑开发安卓APP吗? Do you mean if it can be used on mobile browsers? Yes, it can. Or is this one? ➡️ https://play.google.com/store/apps/details?id=com.gravity22.reverseimagesearch.search_by_image
下面这个可以 ``` let input = document.querySelector('.magnet-input'); input.value = searchTerms; input.dispatchEvent(new Event("input", {bubbles:true})); document.querySelector('.preview-button').click(); ``` 这是搜索结果页面 https://magnet.pics/m/8c5dece7a72036bbf2ad664fc51fb7e76387e002 磁力链接取 hash 参数,可以用正则提取出来。 (不过感觉没啥用啊,预览图就一张,看了等于没看😂) @ssborbis This website can view screenshots of magnetic links. `magnet:?xt=urn:btih:8c5dece7a72036bbf2ad664fc51fb7e76387e002&dn=Marvels+THE+AVENGERS`
> @ssborbis Thank you for your help, but testing `input.dispatchEvent(new Event("input", {bubbles:true}));` is work. Can you take another look at https://metaso.cn/ for me? 火狐上可用,mataso 这个我也不会
> @7peanuts 麻烦帮忙看下 https://24hbook.com/ 如何模拟按Enter键? 这样吧,输入不显示的用 bubbles 试试 ``` (async() => { let input = document.querySelector('input.chakra-input.css-1ndqqtl'); input.focus(); await new Promise(r => setTimeout(r, 500)); input.value = searchTerms; input.dispatchEvent(new Event("input", {bubbles:true})); input.dispatchEvent(new...
> 再请教下,这里是两个类对吧?可为什么我只用其中一个不起作用,需要用两个,搜了下两个类都是唯一的。 不知道,刚看了下我这边的也变了,但是还能用。 说实话,我太懒了,两年了仍然没开始学编程,打算润色一下的中文翻译才完成 25% 😀
这还得登录😅,下面这个能用,应该可以简化一下,你可以简化一下。 ```js (async() => { let input = document.querySelector('.el-textarea__inner'); input.focus(); await new Promise(r => setTimeout(r, 100)); input.value = searchTerms; input.dispatchEvent(new Event("input")); input.dispatchEvent(new Event("change")); document.querySelector('.i-search-text').click(); })(); ```
I found out why the engine was accidentally deleted.  Dragging the hotkey box with the mouse will cause the folder to be deleted, but not the individual engines.
I'm using the element type selector, but not yet the match terms REGEX. I've added hundreds of engines and most of their element types are `selection` . Even though I've...