const someHTML = ` Siteproxy

Siteproxy

搜索引擎


Google IPv4
Google IPv6
DuckDuckGo
Bing

常用网站


DuckDuckGo AI Chat
Wikipedia
YouTube
X / Twitter
APKMirror
Web Telegram

新闻网站


美国之音
纽约时报
路透社
华尔街日报
德国之声
万维读者
聯合新聞網
法国国际广播电台
朝鲜日报
星島日報

海外论坛


文学城
留园网
加拿大家园
` /** * rawHtmlResponse delievers a response with HTML inputted directly * into the worker script * @param {string} html */ async function rawHtmlResponse(html) { const init = { headers: { 'content-type': 'text/html;charset=UTF-8', }, }; return new Response(html, init); } addEventListener('fetch', event => { const { url } = event.request; return event.respondWith(rawHtmlResponse(someHTML)); })