-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpopup.html
More file actions
34 lines (33 loc) · 995 Bytes
/
popup.html
File metadata and controls
34 lines (33 loc) · 995 Bytes
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
30
31
32
33
<!doctype html>
<html>
<head>
<title>Send Intercom Events</title>
<script src="scripts/popup.js"></script>
<link rel="stylesheet" href="css/intercom.css">
</head>
<body>
<div style="width: 185px; margin: 10px;">
<div class="spacing">
Intercom Id
<input type="text" id="intercom-id" class="text-size">
</div>
<div class="spacing">
Intercom App Key
<input type="text" id="intercom-app-key" class="text-size">
</div>
<div class="spacing">
Intercom API Key
<input type="text" id="intercom-api-key" class="text-size">
</div>
<div class="spacing">
Intercom Events (, seperated)
<input type="text" id="intercom-events" class="text-size">
</div>
<div id="event-buttons" class="spacing">
</div>
<div class="spacing">
<label id="message" />
</div>
</div>
</body>
</html>