type
status
date
slug
summary
tags
category
icon
password
备注
下载附件
// 替换成你想镜像的站点
const upstream = '填写你要反代的网址 如www.google.com'
// 如果那个站点有专门的移动适配站点,否则保持和上面一致
const upstream_mobile = '填写你要反代的网址,同上'
// 你希望禁止哪些国家访问
const blocked_region = ['RU']
// 禁止自访问
const blocked_ip_address = ['0.0.0.0', '127.0.0.1']
// 替换链接或文本
const replace_dict = {
'$upstream': '$custom_domain',
'原链接': '替换后链接'
'原链接': '替换后链接'
'原链接': '替换后链接'
}
//以下内容都不用动
addEventListener('fetch', event => {
event.respondWith(fetchAndApply(event.request));
})
async function fetchAndApply(request) {
}
async function replace_response_text(response, upstream_domain, host_name) {
let text = await response.text()
}
async function device_status (user_agent_info) {
var agents = ["Android", "iPhone", "SymbianOS", "Windows Phone", "iPad", "iPod"];
var flag = true;
for (var v = 0; v < agents.length; v++) { if (user_agent_info.indexOf(agents[v]) > 0) {
flag = false;
break;
}
}
return flag;
}
- 作者:赚刀吧
- 链接:https://zdbar.com/article/a87861d7-7ec5-4a1f-9749-7c9f2ca91dfc
- 声明:本文采用 CC BY-NC-SA 4.0 许可协议,转载请注明出处。