mirror of
https://github.com/GetOpenScript/OpenScript.git
synced 2026-09-18 09:45:43 +00:00
14 lines
455 B
HTML
14 lines
455 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>OpenScript</title>
|
|
<link rel="stylesheet" href="./styles/index.css" />
|
|
</head>
|
|
<body class="bg-slate-50 text-slate-900 flex flex-col h-[560px] w-[480px] overflow-hidden select-none">
|
|
<div id="app" class="flex flex-col h-full"></div>
|
|
<script type="module" src="./popup.js"></script>
|
|
</body>
|
|
</html>
|