全栈部署的云书签
https://github.com/cxumol/URLinkCat

uptime监控
https://github.com/lyc8503/UptimeFlare

短链
https://github.com/xyTom/Url-Shorten-Worker/tree/crazypeace
https://github.com/AoEiuV020/Url-Shorten-Worker

导航页
https://github.com/sleepwood/CF-Worker-Dir

新浪图床的Cloudflare Workers反向代理脚本
https://github.com/ZiAzusa/sinaimg-cf-workers

个人blog
https://github.com/u9sky/cfblog-plus
https://github.com/Arronlong/cfblog-plus
食用方法
https://www.nodeseek.com/post-21372-1

私人小文件分享网盘
https://github.com/xiadd/pastebin-worker
https://github.com/iiop123/dingding
https://github.com/SharzyL/pastebin-worker
https://github.com/bestK/cf-worker-upload-b2CSB

个人图床
https://github.com/iiop123/workers-image-hosting
https://github.com/houhoz/cf-workers-telegram-image
https://github.com/cf-pages/Telegraph-Image
使用 Cloudflare Worker 处理图片, 依赖 Photon,支持缩放、剪裁、水印、滤镜等功能。
https://github.com/ccbikai/cloudflare-worker-image

tg机器人
Chatgpt机器人
https://github.com/TBXark/ChatGPT-Telegram-Workers
tg私聊机器人
https://github.com/LloydAsp/nfd

私人clash订阅
https://github.com/bulianglin/psub

PT-Gen豆瓣简介
https://github.com/Rhilip/pt-gen-cfworker

New bing聊天服务器
https://github.com/adams549659584/go-proxy-bingai/issues/81
Github Copilot Chat API
https://github.com/wpv-chan/cf-copilot-service
https://www.v2ex.com/t/1004009

搭建自己的优选测速地址
https://blog.misaka.rest/2023/07/11/cf-wkrs-yxurl/

RSS
https://blog.davidwang.org/2023/04/28/js-rss-proxy/
rss 通知服务
https://github.com/pureink/inkrss
轻量级的 RSS 订阅工具
https://github.com/yllhwa/RSSWorker
反代 RSSHub
https://github.com/wdssmq/rsshub-cf

反向代理TG_BOT_API

const whitelist = ["/bot你的botID:"];
//示例const whitelist = ["/bot123456:"];
const tg_host = "api.telegram.org";

addEventListener('fetch', event => {
    event.respondWith(handleRequest(event.request))
})

function validate(path) {
    for (var i = 0; i < whitelist.length; i++) {
        if (path.startsWith(whitelist[i]))
            return true;
    }
    return false;
}

async function handleRequest(request) {
    var u = new URL(request.url);
    u.host = tg_host;
    if (!validate(u.pathname))
        return new Response('Unauthorized', {
            status: 403
        });
    var req = new Request(u, {
        method: request.method,
        headers: request.headers,
        body: request.body
    });
    const result = await fetch(req);
    return result;
}