mirror of
https://github.com/JosunLP/BrowserExtensionTemplate.git
synced 2025-06-21 18:11:08 +00:00
25 lines
711 B
HTML
25 lines
711 B
HTML
<!DOCTYPE html>
|
|
<html lang="">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
<link rel="icon" href="./favicon.ico">
|
|
<title>{{BET}} Options</title>
|
|
</head>
|
|
<body>
|
|
<noscript>
|
|
<strong>We're sorry but {{BET}} doesn't work properly without JavaScript enabled. Please enable it to
|
|
continue.</strong>
|
|
</noscript>
|
|
<div id="app">
|
|
<img src="./icons/icon128.png" class="logo" />
|
|
<h1>Settings</h1>
|
|
<div id="settings">
|
|
</div>
|
|
</div>
|
|
<footer>
|
|
<script type="module" src="./settings.js"></script>
|
|
</footer>
|
|
</body>
|
|
</html>
|