UNPKG

create-chrome-ext

Version:

Scaffolding your chrome extension, multiple boilerplates supported!

15 lines (14 loc) 438 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 + TS + Vite</title> <link rel="stylesheet" href="./src/index.css" /> </head> <body> <options-root></options-root> <script type="module" src="./src/options/index.ts"></script> </body> </html>