-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
29 lines (26 loc) · 867 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
25
26
27
28
29
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class='submenu'>
<span class="title">Copiar</span>
<button class="input" id="copy-items">Itens</button>
<button class="input" id="copy-nf">Nota Fiscal</button>
</div>
<div class='submenu'>
<span class="title">Baixar</span>
<button class="input" id="download-items">Itens</button>
<button class="input" id="download-nf">Nota Fiscal</button>
</div>
<button id="open-sheet">Abrir Planilha</button>
<!-- <div class="input">
<label>Incluir Cabeçalho</label><input type="checkbox" id="head-include">
</div> -->
<script src="handler_items.js"></script>
<script src="handler_nf.js"></script>
<script src="open_sheet.js"></script>
</body>
</html>