From 88d8653ab5374c659381b7a30a7ad47aec0bebaa Mon Sep 17 00:00:00 2001 From: hz <1532246395@qq.com> Date: Fri, 7 Mar 2025 17:41:42 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E4=BF=AE=E5=A4=8Dua=E6=A0=87?= =?UTF-8?q?=E8=AF=86=E7=AD=89=E4=B8=A4=E4=B8=AA=E5=89=8D=E7=AB=AF=E6=9C=AA?= =?UTF-8?q?=E6=AD=A3=E5=B8=B8=E5=9B=9E=E6=98=BE=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/static/index.html | 2 +- api/static/index.js | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/api/static/index.html b/api/static/index.html index af31215..d80d409 100644 --- a/api/static/index.html +++ b/api/static/index.html @@ -79,7 +79,7 @@
+ placeholder="用于获取订阅的http请求中的user-agent标识(可选)" rows="3">
diff --git a/api/static/index.js b/api/static/index.js index 4b462ee..70bed2f 100644 --- a/api/static/index.js +++ b/api/static/index.js @@ -256,6 +256,17 @@ async function parseInputURL() { ); } + if (params.has("userAgent")) { + document.getElementById("user-agent").value = decodeURIComponent( + params.get("userAgent") + ); + } + + if (params.has("ignoreCountryGroup")) { + document.getElementById("igcg").checked = + params.get("ignoreCountryGroup") === "true"; + } + if (params.has("replace")) { parseAndFillReplaceParams(decodeURIComponent(params.get("replace"))); }