feat: 添加 VLESS-Reality 静态节点解析支持

支持 vless:// URI 解析,覆盖 Reality/TLS/WS/gRPC 传输方式,
自动提取 pbk、sid、sni 等参数生成 Surge 配置行。

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-15 13:22:53 +08:00
parent 2df229473a
commit e268ed6d10
3 changed files with 52 additions and 2 deletions

View File

@@ -50,7 +50,7 @@ export default function StaticNodes() {
return (
<div>
<h2 style={styles.title}></h2>
<p style={styles.subtitle}> ss:// / vmess:// / trojan:// URI 自动解析</p>
<p style={styles.subtitle}> ss:// / vmess:// / trojan:// / vless:// URI 自动解析</p>
<div style={styles.form}>
<input
@@ -60,7 +60,7 @@ export default function StaticNodes() {
style={{ width: 180 }}
/>
<input
placeholder="粘贴节点 URIss:// / vmess:// / trojan://"
placeholder="粘贴节点 URIss:// / vmess:// / trojan:// / vless://"
value={uri}
onChange={e => setUri(e.target.value)}
onKeyDown={handleKeyDown}