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