25 lines
517 B
HTML
25 lines
517 B
HTML
<!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> |