Initial commit: OpenScript browser extension

This commit is contained in:
2026-09-08 13:52:35 -07:00
commit 2e986bf09d
20 changed files with 5909 additions and 0 deletions

13
src/popup.html Normal file
View File

@@ -0,0 +1,13 @@
<!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-navy-950 text-slate-100 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>