-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
26 lines (26 loc) · 1.12 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Query-Strings</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous">
<link rel="stylesheet" href="popup.css"/>
<script language='javascript' src='popup.js'></script>
</head>
<body>
<h2 class="queryRiderHeading">QueryRider</h2>
<div id="addQueryParamSection">
<h3 id="addNewQueryStringHeading">Add or Modify a Query String</h3>
<input type="text" id="newQueryStringKey" name="newQueryStringKey" placeholder="New Param">
<input type="text" id="newQueryStringValue" name="newQueryStringValue" placeholder="Value">
<button id="addNewButton">Add Param</button>
</div>
<ul id="paramList"></ul>
<button class='reloadBtn'>Reload This Page</button>
</body>
</html>