mirror of
https://github.com/e9x/electron-injector.git
synced 2025-12-16 15:37:42 +01:00
18 lines
492 B
HTML
18 lines
492 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/patcher.svg" />
|
|
<meta
|
|
name="description"
|
|
content="Inject scripts into the preloads of Electron based applications."
|
|
/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Electron Injector</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|