-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (72 loc) · 2.5 KB
/
Copy pathindex.html
File metadata and controls
72 lines (72 loc) · 2.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>网盘提取工具</title>
<style>
:root {
color-scheme: light;
font-family: "Segoe UI", "Microsoft YaHei", sans-serif;
background: #f4f6f8;
color: #17212b;
}
* { box-sizing: border-box; }
body { margin: 0; min-width: 320px; }
main { width: min(720px, calc(100% - 32px)); margin: 64px auto; }
header { border-bottom: 1px solid #d9e0e7; padding-bottom: 24px; }
h1 { margin: 0 0 10px; font-size: clamp(28px, 6vw, 44px); line-height: 1.15; }
p { color: #52606d; line-height: 1.7; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
a { color: inherit; }
.button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 44px;
padding: 0 18px;
border: 1px solid #17212b;
border-radius: 6px;
background: #17212b;
color: #fff;
text-decoration: none;
cursor: pointer;
font: inherit;
}
.button.secondary { background: #fff; color: #17212b; border-color: #b8c3ce; }
section { padding: 26px 0; border-bottom: 1px solid #d9e0e7; }
ul { margin: 14px 0 0; padding-left: 22px; color: #52606d; line-height: 1.9; }
footer { padding-top: 22px; color: #718096; font-size: 14px; }
@media (max-width: 520px) { main { margin: 36px auto; } .actions { align-items: stretch; flex-direction: column; } }
</style>
</head>
<body>
<main>
<header>
<h1>网盘提取工具</h1>
<p>用于 Tampermonkey 的网盘链接与提取码辅助脚本,当前版本 3.4.0。</p>
<div class="actions">
<a class="button" href="./网盘提取工具-修复版.user.js">安装脚本</a>
<a class="button secondary" href="https://github.com/ackcsa/netdisk-extractor-userscript/releases/latest">查看 Release</a>
</div>
</header>
<section>
<strong>支持服务</strong>
<ul>
<li>百度网盘</li>
<li>蓝奏云</li>
<li>天翼云盘</li>
</ul>
</section>
<section>
<strong>主要处理</strong>
<ul>
<li>识别链接附近的 4 位提取码并补全链接</li>
<li>处理动态加载内容并避免重复改写</li>
<li>在目标页面自动填写并尝试提交提取码</li>
</ul>
</section>
<footer>源代码和更新记录均在本仓库公开。</footer>
</main>
</body>
</html>