chrome-extension-cli
Version:
The CLI for your next Chrome Extension.
30 lines (24 loc) • 701 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>My Panel</title>
<link rel="stylesheet" href="panel.css" />
</head>
<body>
<div class="app">
<main class="main">
<p id="message" class="message"></p>
<hr class="divider" />
<p class="title">Chrome Extension is Ready!</p>
<p class="subtitle">Start by updating <code>panel.html</code></p>
</main>
</div>
<script src="panel.js"></script>
<!--
This HTML page is used to create a Panel inside DevTools page.
To begin the development, run `npm run watch`.
To create a production bundle, use `npm run build`.
-->
</body>
</html>