create-chrome-ext
Version:
Scaffolding your chrome extension, multiple boilerplates supported!
15 lines (14 loc) • 444 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/icons/logo.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chrome Extension + Lit + JS + Vite</title>
<link rel="stylesheet" href="./src/index.css" />
</head>
<body>
<sidepanel-root></sidepanel-root>
<script type="module" src="./src/sidepanel/index.js"></script>
</body>
</html>