-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
159 lines (138 loc) · 2.94 KB
/
popup.html
File metadata and controls
159 lines (138 loc) · 2.94 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>entryflow</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 300px;
padding: 16px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #f5f5f5;
}
h1 {
font-size: 18px;
color: #333;
margin-bottom: 16px;
text-align: center;
}
.logo {
text-align: center;
margin-bottom: 16px;
}
.logo-text {
color: #81c14b;
font-size: 24px;
font-weight: bold;
}
.setting {
background: #fff;
padding: 12px;
margin-bottom: 10px;
border-radius: 6px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.setting label {
display: block;
font-size: 13px;
color: #666;
margin-bottom: 6px;
}
.setting input[type="number"] {
width: 100%;
padding: 8px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 13px;
}
.setting select {
width: 100%;
padding: 8px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 13px;
background: #fff;
}
.info {
background: #e8f5e9;
padding: 12px;
border-radius: 6px;
margin-top: 16px;
font-size: 12px;
color: #2e7d32;
line-height: 1.5;
}
.info strong {
display: block;
margin-bottom: 8px;
color: #1b5e20;
}
.info ul {
margin-left: 20px;
margin-top: 8px;
}
.info li {
margin-bottom: 4px;
}
.btn {
width: 100%;
padding: 10px;
background: #81c14b;
color: #fff;
border: none;
border-radius: 4px;
font-size: 14px;
cursor: pointer;
margin-top: 12px;
transition: background 0.2s;
}
.btn:hover {
background: #6fa83d;
}
.status {
text-align: center;
padding: 8px;
margin-top: 12px;
border-radius: 4px;
font-size: 12px;
display: none;
}
.status.success {
background: #e8f5e9;
color: #2e7d32;
display: block;
}
.footer {
text-align: center;
margin-top: 16px;
font-size: 11px;
color: #999;
}
</style>
</head>
<body>
<div class="logo">
<div class="logo-text">⚡ entryflow</div>
</div>
<h1>entryflow</h1>
<div class="info">
<strong>nasıl kullanılır:</strong>
<ul>
<li>bir başlık sayfasını açın</li>
<li>sağ altta çıkan kontrol panelinden otomatik güncellemeyi başlatın</li>
<li>güncelleme süresini kontrol panelinden ayarlayabilirsiniz</li>
<li>yeni entry'ler otomatik olarak eklenecek ve size gösterilecektir</li>
</ul>
</div>
<div class="footer">
v1.0 - kalple falan yapılmadı
</div>
<script src="popup.js"></script>
</body>
</html>