perf(XHS-Downloader.js): 禁用自动滚动屏幕功能

BREAKING CHANGE: 使用自动化方案滚动屏幕可能会被检测并风控,故暂时禁用自动滚动屏幕功能
This commit is contained in:
JoeanAmier 2024-09-25 18:20:44 +08:00
parent 80c3e71649
commit 04557b074f
4 changed files with 10 additions and 9 deletions

View File

@ -14,7 +14,7 @@
</div>
<br>
<p>🔥 <b>小红书链接提取/作品采集工具</b>:提取账号发布、收藏、点赞、专辑作品链接;提取搜索结果作品链接、用户链接;采集小红书作品信息;提取小红书作品下载地址;下载小红书无水印作品文件!</p>
<p><strong>⚠️ 2024/9/24: 由于小红书规则更新,使用版本号低于 <code>1.7.0</code> 的用户脚本有封号风险,请及时更新用户脚本后再使用!</strong></p>
<p><strong>⚠️ 2024/9/24: 由于小红书规则更新,使用版本号低于 <code>1.7.1</code> 的用户脚本有封号风险,请及时更新用户脚本后再使用!</strong></p>
<p>⭐ 本项目完全免费开源,无任何收费功能,请勿上当受骗!</p>
<h1>📑 项目功能</h1>
<ul><b>程序功能</b>

View File

@ -14,7 +14,7 @@
</div>
<br>
<p>🔥 <b>Xiaohongshu Link Extraction/Content Collection Tool</b>Extract account-published, favorited, and liked content links; extract search result content links and user links; collect Xiaohongshu content information; extract Xiaohongshu content download addresses; download Xiaohongshu watermark-free content files!</p>
<p><strong>⚠️ 2024/9/24: Due to rule updates on Xiaohongshu, there is a risk of account suspension for user scripts with version numbers lower than <code>1.7.0</code> Please update the user scripts in a timely manner before using them!</strong></p>
<p><strong>⚠️ 2024/9/24: Due to rule updates on Xiaohongshu, there is a risk of account suspension for user scripts with version numbers lower than <code>1.7.1</code> Please update the user scripts in a timely manner before using them!</strong></p>
<p>⭐ This project is completely free and open-source, with no paid features. Please do not be deceived!</p>
<p>⭐ Due to the author's limited energy, I was unable to update the English document in a timely manner, and the content may have become outdated, partial translation is machine translation, the translation result may be incorrect, Suggest referring to Chinese documentation. If you want to contribute to translation, we warmly welcome you.</p>
<h1>📑 Project Features</h1>

View File

@ -14,4 +14,4 @@
1. 重构作品链接提取功能
<p><strong>⚠️ 由于小红书规则更新,使用版本号低于 <code>1.7.0</code> 的用户脚本有封号风险,请及时更新用户脚本后再使用!</strong></p>
<p><strong>⚠️ 由于小红书规则更新,使用版本号低于 <code>1.7.1</code> 的用户脚本有封号风险,请及时更新用户脚本后再使用!</strong></p>

View File

@ -1,7 +1,7 @@
// ==UserScript==
// @name XHS-Downloader
// @namespace https://github.com/JoeanAmier/XHS-Downloader
// @version 1.7.0
// @version 1.7.1
// @description 提取小红书作品/用户链接,下载小红书无水印图文/视频作品文件
// @author JoeanAmier
// @match http*://xhslink.com/*
@ -21,7 +21,7 @@
// ==/UserScript==
(function () {
let disclaimer = GM_getValue("disclaimer", null);
let disclaimer = GM_getValue("disclaimer", false);
const readme = () => {
const instructions = `
@ -42,9 +42,9 @@
1. 下载小红书无水印作品文件时脚本需要花费时间处理文件请等待片刻切勿多次点击下载按钮
2. 无水印图片文件为 PNG 格式无水印视频文件较大可能需要较长的时间处理页面跳转可能会导致下载失败
3. 提取账号发布收藏点赞专辑作品链接时脚本会尝试自动滚动屏幕直至加载全部作品滚动检测间隔2.5
4. 提取发现作品链接搜索作品用户链接时脚本会自动滚动屏幕以尝试加载更多内容滚动屏幕次数10
5. 可以修改滚动检测间隔滚动屏幕次数修改后立即生效亦可关闭自动滚动屏幕功能手动滚动屏幕加载内容
3. (已禁用)提取账号发布收藏点赞专辑作品链接时脚本会尝试自动滚动屏幕直至加载全部作品滚动检测间隔2.5
4. (已禁用)提取发现作品链接搜索作品用户链接时脚本会自动滚动屏幕以尝试加载更多内容滚动屏幕次数10
5. (已禁用)可以修改滚动检测间隔滚动屏幕次数修改后立即生效亦可关闭自动滚动屏幕功能手动滚动屏幕加载内容
6. 使用全局代理工具可能会导致脚本下载文件失败如有异常请尝试关闭代理工具必要时向作者反馈
7. XHS-Downloader 用户脚本仅实现可见即可得的数据采集功能无任何收费功能和破解功能
@ -79,7 +79,7 @@
}
};
if (disclaimer === null) {
if (!disclaimer) {
readme();
}
@ -88,6 +88,7 @@
});
let scroll = GM_getValue("scroll", true);
scroll = false;
GM_registerMenuCommand(`自动滚动屏幕功能 ${scroll ? '✔️' : '❌'}`, function () {
scroll = !scroll;