UNPKG

create-chrome-ext

Version:

Scaffolding your chrome extension, multiple boilerplates supported!

14 lines (13 loc) 375 B
<!doctype 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 + Svelte + TS + Vite</title> </head> <body> <div id="app"></div> <script type="module" src="/src/popup/index.ts"></script> </body> </html>