UNPKG

create-chrome-ext

Version:

Scaffolding your chrome extension, multiple boilerplates supported!

15 lines (14 loc) 435 B
<!doctype 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> <newtab-root></newtab-root> <script type="module" src="./src/newtab/index.js"></script> </body> </html>