-
Notifications
You must be signed in to change notification settings - Fork 18
/
popup.html
106 lines (85 loc) · 2.69 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
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
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<link href='http://fonts.googleapis.com/css?family=Open+Sans&subset=latin,cyrillic' rel='stylesheet' type='text/css'>
<script src="jquery.js"></script>
<script src="rsvp-latest.min.js"></script>
<script src="init.js"></script>
<script src="cmn.js"></script>
<script src="popup.js"></script>
</head>
<body>
<style>
body {
font-family: 'Open Sans', sans-serif;
background: #fdfefe;
padding: 20px;
}
#offer {
width: 300px;
}
.owner {
color: #2c3;
}
ul {
margin-top: 5px;
}
#later {
width: 40%;
color: #2c3;
}
#never {
width: 40%;
color: #f00;
}
small {
color: #ccc;
}
button {
margin: 3px 0 3px 0;
}
.hidden {
display: none;
}
#crawlerOn {
margin-bottom: 10px;
}
</style>
<div id="offer">
<div id="crawlerOn">
<strong>Сканирование выключено!</strong><br>
<button id='crawlerOn30m'>Включить на полчаса</button><br>
<small>Это поможет программе работать быстрее</small>
</div>
<strong id='crawlerOnThanks' class='hidden'>Спасибо!</strong>
<div id='menu'>
<strong>Меню</strong>
<ul style='margin: 5px 0 10px 0'>
<li><a href='http://sobnik.com/kak-rabotaet-sobnik.html' target='_blank'>Инструкция</a></li>
<li><a href='settings.html' target='_blank'>Настройки</a></li>
</ul>
</div>
<hr>
<strong>S<span class='owner'>o</span>bnik</strong> активно развивается. Чтобы быть в курсе событий, подпишитесь на рассылку:
<!-- Begin MailChimp Signup Form -->
<div id="mc_embed_signup">
<form action="https://sobnik.us9.list-manage.com/subscribe/post?u=0595b8428c0044034c109d0a4&id=5819a04f5e" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll">
<div class="mc-field-group">
<input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL" placeholder="Email">
<input type="submit" value="Да!" name="subscribe" id="mc-embedded-subscribe" class="button done">
</div>
</div>
</form>
</div>
<!--End mc_embed_signup-->
Или вступайте в группы:
<ul>
<li><a class="done" href="https://vk.com/sobnik_com" target="_blank">Вконтакте</a></li>
<li><a class="done" href="https://twitter.com/sobnik_com" target="_blank">Twitter</a></li>
<li><a class="done" href="https://www.facebook.com/sobnik" target="_blank">Facebook</a></li>
</ul>
Обещаю, никакого спама!
</div>
</body>
</html>