create-chrome-ext
Version:
Scaffolding your chrome extension, multiple boilerplates supported!
17 lines (15 loc) • 502 B
HTML
<html dir="ltr" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="x-ua-compatible" content="IE=Edge" />
<link rel="icon" href="/icons/logo.ico" />
<title>Chrome Extension + Stencil + TS + Vite</title>
<script type="module" src="/assets/app.esm.js"></script>
<script nomodule src="/assets/app.js"></script>
</head>
<body>
<side-root></side-root>
</body>
</html>