-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpopup.html
More file actions
131 lines (126 loc) · 4.69 KB
/
popup.html
File metadata and controls
131 lines (126 loc) · 4.69 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>popup</title>
<link href="css/style.css" rel="stylesheet" />
<link href="css/contentScript.css" rel="stylesheet" />
<script src="lib/fetch.umd.js"></script>
<script src="lib/jquery-3.1.1.min.js"></script>
<script src="lib/axios.min.js"></script>
<script src="js/util.js"></script>
<script src="auth/config.js"></script>
<script src="auth/pay/rolecheck.js"></script>
</head>
<body>
<div id="maincontent" style="width: 100%">
<div id="content">
<div style="
padding: 0;
display: flex;
flex-direction: row;
height: 50px;
align-items: flex-start;
text-align: center;
justify-content: space-between;
">
<h2 style="text-align: left">GMB Scraper</h2>
<button id="loginbtn" style="margin: 5px"></button>
</div>
<div style="
padding: 5px 0;
display: flex;
flex-direction: row;
width: 100%;
align-items: center;
justify-content: flex-end;
gap: 10px;
border-bottom: 1px solid #cccccc;
margin-bottom: 10px;
">
<div>
<span id="accountinfo" style="font-weight: bold; font-size: 16px"></span>
</div>
<button id="upgradebtn" style="display: none">Upgrade</button>
</div>
<div style="
padding: 20px;
display: flex;
flex-direction: column;
align-items: left;
gap: 20px;
row-gap: 20px;
height: 200px;
">
<div style="
display: flex;
align-items: center;
justify-content: flex-start;
flex-direction: row;
gap: 20px;
">
<!-- <input type="text" id="profileid" value="coffee shop near new york" style="height: 20px; width: 300px; border-radius: 0.375rem; border: 1px #ccc solid; padding: 10px;" /> -->
<input type="text" id="profileid" value="coffee shop near new york" style="
height: 20px;
width: 300px;
border-radius: 0.375rem;
border: 1px #ccc solid;
padding: 10px;
" />
<button id="addprofilebtn" style="
width: 200px;
height: 40px;
background-color: darkgreen;
color: #fff;
">
Search
</button>
</div>
<div>
<ul>
<li>
<a id="demo_link" style="
text-decoration: underline;
color: cadetblue;
font-size: 16px;
margin: 5px 0px;
" href="">
Leads Demo Data</a
>
</li>
<!-- <li><a id="review_demo_link" style="text-decoration: underline; color: cadetblue; font-size: 16px; margin: 5px 0px ; " href=""> Reviews Demo Data</a></li> -->
<li>
<a id="demo_video" style="
text-decoration: underline;
font-size: 16px;
color: cadetblue;
margin: 5px 0px;
" href="">Video Showcase</a
>
</li>
</ul>
</div>
<!-- <div>
<h3>Scraper Settings: </h3>
<div style="vertical-align: middle; height: 30px; padding: 0px 0">
<input type='checkbox' id="collect_phone_cb"><label for="collect_phone_cb">Extract Phones from Detail Pages If not Exist in List Pages. (Pro Only)</label>
</div>
<div style="vertical-align: middle; height: 30px; padding: 0px 0">
<input type='checkbox' id="collect_email_cb"><label for="collect_email_cb">Extract emails, social media links from Business Websites. (Pro Only)</label>
</div>
</div> -->
</div>
<hr />
<div>
<a href="https://forms.gle/ryakermMciHccHHW6" target="_blank">
<h3>Any Suggestions? Feel free to contact us!</h3>
</a>
</div>
<div id="managesubscription">
<button id="customerportal">Manage My Subscription</button>
</div>
</div>
</div>
</body>
<script src="js/popup.js"></script>
</html>