Car Picker

HELLO

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey to install this script.

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Car Picker
// @namespace    http://tampermonkey.net/
// @description  HELLO
// @author       You
// @version      2.1
// @match        https://app-polytrack.kodub.com/*/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=kodub.com
// @grant        none
// @license       MIT
// ==/UserScript==

let url = "https://raw.githubusercontent.com/Candorada/TamperMonkey/refs/heads/main/PolytrackCarPicker.js"
async function tamper() {
	try{
	await fetch(url)
	document.body.parentElement.innerHTML =`
	<!DOCTYPE html>

	<html>
		<head>
			<link rel="manifest" href="manifest.json" />
			<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
		</head>
		<body>
			<canvas id="screen"></canvas>
			<div id="ui"></div>
			<div id="transition-layer"></div>
		</body>
	</html>
	`
	let s = document.createElement("script")
	s.textContent = await (await fetch(url)).text()
	document.body.appendChild(s)
	}catch{

	}
}
tamper()