-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
24 lines (24 loc) · 876 Bytes
/
popup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Text Injector</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<textarea autofocus id="TextInput" cols="70 " rows="5" title="New macro or category text"></textarea>
<div id="actionContainer">
<button id="addMacro" title="Create a macro in the current category">
<img src="newmacro.png" alt="New macro">
</button>
<button id="addCategoryButton" title="Create a category">
<img src="newcat.png" alt="New category">
</button>
<button id="racineCat" title="Back to root">Text Injector /</button>
<div id="catStatus"></div>
</div>
<div id="macroContainer"></div>
<script src="popup.js"></script>
</body>
</html>