-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpopup.html
45 lines (39 loc) · 1.25 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shortcuts for SEOs</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap');
body {
width: 800px;
height: 500px;
overflow: hidden;
font-size: 18px;
font-family: 'Inter', sans-serif;
}
</style>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h2>Search shortcuts for SEOs</h2>
<p>Like a CLI for Google! More info and examples <a href="https://github.com/dsottimano/dsottimano-google-cli-for-seos">here</a>. Made out of pure frustration by <a
href="https://twitter.com/dsottimano">@dsottimano</a>. Part of the <a
href="https://fetchlet.com">Fetchlet family.</a></p>
<table class="styled-table">
<thead>
<tr>
<th>operator</th>
<th>query</th>
<th>param</th>
<th>info</th>
</tr>
</thead>
<tbody id="tdata">
</tbody>
</table>
<script src="popup.js"></script>
<script src="addSpaceSearch.js"></script>
</body>
</html>