Car Picker

HELLO

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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.

(У мене вже є менеджер скриптів, дайте мені встановити його!)

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()