Append the next page content to the bottom seamlessly (like a waterfall, Unlimited scrolling, no need to manually click on the next page)~
右上角 Tampermonkey 扩展图标里,点击 自动无缝翻页
右边的 >
按钮展开后,点击 编辑
,然后在选项卡中选择 设置
,往下翻找到 包括/排除
,取消勾选 原始匹配
,然后在下面的用户匹配中添加一个网址,例如 https://greasyfork.org/*
这样。
@key911 看了下,Yandex 网页页码元素有所变动。
不过我不建议在 Yandex 上用我的脚本,因为很容易触发验证码,如果你翻着翻着就翻不动了,就说明脚本后台获取下一页内容时,被 Yandex 拦住询问验证码了,搞不懂 Yandex 为什么把触发阈值调的这么低,这么多搜索引擎上,我只在 Yandex 上翻页遇到过验证码。。。
复制粘贴到脚本 自定义翻页规则
默认的 { }
中间保存(浏览器右上角 Tampermonkey 扩展图标内的脚本菜单)
"Yandex 搜索": {
"host": ["yandex.com","yandex.ru","yandex.ua","yandex.by","yandex.kz","yandex.uz","yandex.com.tr"],
"url": "return (fun.lp() == '/search/')",
"history": true,
"pager": {
"nextL": "a.Pager-Item_type_next",
"pageE": "#search-result, style",
"replaceE": ".Pager"
}
}
我只想对某一个指定网站自动翻页,其他所有网站全部排除或禁用,请问如何操作?