webpack-run-chrome-extension
Version:
Run your extension on Google Chrome with auto-reload support
36 lines (35 loc) • 1.36 kB
HTML
<html lang="en">
<head>
<title>Welcome!</title>
<meta charset="UTF-8">
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🧩</text></svg>">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./sakura.css" media="screen" />
<link rel="stylesheet" href="./sakura-dark.css" media="screen and (prefers-color-scheme: dark)" />
<style>
.center-middle {
display: flex;
flex-direction: column;
justify-content: center;
height: 100vh;
padding: 0;
margin: 0;
}
</style>
</head>
<body>
<div class="center-middle">
<h1 style="font-size: 4.2em">
Chrome Extension<br>
<a href="#"><span id="extensionName"></a><br>
ready.</h1>
<p id="extensionDescription"></p>
<p>
<a target="_blank" href="https://github.com/cezaraugusto/extension">🧩 Extension.js</a> is a development tool for browser extensions with built-in support for TypeScript, WebAssembly, React, and modern JavaScript.
</p>
<button id="learnMore">🧩 Learn more about developing cross-browser extensions</button>
</div>
<script src="welcome.js"></script>
</body>
</html>