feat: add boilerplate

This commit is contained in:
2026-05-15 21:56:07 +02:00
parent 0d3dc30e95
commit 1b30647dcf
5 changed files with 228 additions and 0 deletions

25
popup.html Normal file
View File

@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Text Replacer</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<h2>Text Replacer</h2>
<textarea id="dictionary" spellcheck="false"></textarea>
<button id="saveBtn">Save Dictionary</button>
<p class="hint">
Format:
consultant=conslutant
AI process engineer=algorithm inventor
</p>
</div>
<script src="popup.js"></script>
</body>
</html>