remoteview
Version:
Remote isolated browser platform by Dosyago
18 lines (14 loc) • 340 B
JavaScript
const html = `
<h1>This is a new tab.</h1>
`;
const NEWTAB_RESPONSE = `
HTTP/1.1 200 OK
X-Powered-By: Zanj-Dosyago-Corporation
X-Blocked-Internally: Custom ad blocking
Accept-Ranges: bytes
Cache-Control: public, max-age=0
Content-Type: text/html; charset=UTF-8
Content-Length: ${html.length}
${html}
`;
export default NEWTAB_RESPONSE;