|
2 | 2 | // @name XHS-Downloader |
3 | 3 | // @namespace xhs_downloader |
4 | 4 | // @homepage https://github.com/JoeanAmier/XHS-Downloader |
5 | | -// @version 2.2.2 |
| 5 | +// @version 2.2.3 |
6 | 6 | // @tag 小红书 |
7 | 7 | // @tag RedNote |
8 | 8 | // @description 提取小红书作品/用户链接,下载小红书无水印图文/视频作品文件 |
|
63 | 63 | }; |
64 | 64 |
|
65 | 65 | const readme = async () => { |
66 | | - const instructions = ` |
67 | | -功能清单: |
| 66 | + const instructions = `功能清单: |
68 | 67 | 1. 下载小红书无水印作品文件 |
69 | 68 | 2. 提取推荐页面作品链接 |
70 | 69 | 3. 提取账号发布作品链接 |
|
85 | 84 |
|
86 | 85 | 项目开源地址:https://github.com/JoeanAmier/XHS-Downloader |
87 | 86 | ` |
88 | | - const disclaimer_content = ` |
89 | | -1. 使用者对本项目的使用由使用者自行决定,并自行承担风险。作者对使用者使用本项目所产生的任何损失、责任、或风险概不负责。 |
| 87 | + const disclaimer_content = `1. 使用者对本项目的使用由使用者自行决定,并自行承担风险。作者对使用者使用本项目所产生的任何损失、责任、或风险概不负责。 |
90 | 88 | 2. 本项目的作者提供的代码和功能是基于现有知识和技术的开发成果。作者按现有技术水平努力确保代码的正确性和安全性,但不保证代码完全没有错误或缺陷。 |
91 | 89 | 3. 本项目依赖的所有第三方库、插件或服务各自遵循其原始开源或商业许可,使用者需自行查阅并遵守相应协议,作者不对第三方组件的稳定性、安全性及合规性承担任何责任。 |
92 | 90 | 4. 使用者在使用本项目时必须严格遵守 GNU General Public License v3.0 的要求,并在适当的地方注明使用了 GNU General Public License v3.0 的代码。 |
|
186 | 184 | }; |
187 | 185 |
|
188 | 186 | const about = () => { |
189 | | - window.open('https://github.com/JoeanAmier/XHS-Downloader', '_blank'); |
| 187 | + const aboutText = `项目开源协议:GNU General Public License v3.0 |
| 188 | +项目开源地址:https://github.com/JoeanAmier/XHS-Downloader |
| 189 | +
|
| 190 | +如果 XHS-Downloader 对您有帮助,请考虑为它点个 Star ⭐,感谢您的支持! |
| 191 | +If XHS-Downloader has been helpful to you, please consider giving it a Star ⭐, Thank you for your support! |
| 192 | +
|
| 193 | +✨ 作者的其他开源项目: |
| 194 | +✨ Other Open Source Projects by the Author: |
| 195 | +
|
| 196 | +DouK-Downloader(抖音、DouYin、TikTok):https://github.com/JoeanAmier/TikTokDownloader |
| 197 | +KS-Downloader(快手、KuaiShou):https://github.com/JoeanAmier/KS-Downloader |
| 198 | +
|
| 199 | +项目 Discord 社区:https://discord.com/invite/ZYtmgKud9Y |
| 200 | +`; |
| 201 | + showTextModal({ |
| 202 | + title: '关于 XHS-Downloader', text: aboutText, mode: 'info', closeText: '关闭' |
| 203 | + }); |
190 | 204 | } |
191 | 205 |
|
192 | 206 | const abnormal = (text) => { |
|
2067 | 2081 | }, { |
2068 | 2082 | text: '修改用户脚本设置', icon: ' ⚙️ ', action: showSettings, description: '修改用户脚本设置' |
2069 | 2083 | }, { |
2070 | | - text: '访问项目开源仓库', icon: ' 📒 ', action: about, description: '访问项目 GitHub 开源仓库' |
| 2084 | + text: '关于 XHS-Downloader', |
| 2085 | + icon: ' 📒 ', |
| 2086 | + action: about, |
| 2087 | + description: '查看 XHS-Downloader 更多信息' |
2071 | 2088 | }); |
2072 | 2089 |
|
2073 | 2090 | // 创建菜单项 |
|
0 commit comments