-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
31 lines (27 loc) · 837 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
30
31
<!DOCTYPE html>
<html>
<head>
<title>Popup</title>
<link rel="stylesheet" href="popup.css" />
<script type="application/javascript" charset="utf-8" src="jquery.min.js"></script>
<script type="application/javascript" charset="utf-8" src="popup.js"></script>
</head>
<!-- <body class="body-popup" style="display: flex;
flex-direction:column;
justify-content: center;
align-items: center;">
<form id="form">
<input type="url" id="link_url" placeholder="Enter link" />
</form>
</body> -->
<body>
<button id="enable" class="hide">Enable</button>
<button id="disable">Disable</button>
<span id="status" class="hide"></span>
<hr />
<button id="config">Settings</button>
<hr />
<button id="feedback" class="secondary"> Send feedback</button>
<button id="about" class="secondary">About</button>
</body>
</html>