-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
245 lines (241 loc) · 6.62 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
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
<!DOCTYPE html>
<html>
<head>
<title>Black Cat Learning</title>
<meta charset="UTF-8">
<style>
body {
width: 300px;
padding: 10px;
font-family: Arial, sans-serif;
}
.container {
display: flex;
flex-direction: column;
gap: 10px;
}
input, select, textarea {
width: 100%;
padding: 5px;
margin-top: 5px;
}
textarea {
height: 80px;
resize: vertical;
}
label {
font-weight: bold;
}
button {
background-color: #4CAF50;
color: white;
padding: 8px;
border: none;
border-radius: 4px;
cursor: pointer;
margin-top: 10px;
}
button:hover {
background-color: #45a049;
}
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
.switch input {
opacity: 0;
width: 0;
height: 0;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
transition: .4s;
border-radius: 34px;
}
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
transition: .4s;
border-radius: 50%;
}
input:checked + .slider {
background-color: #4CAF50;
}
input:checked + .slider:before {
transform: translateX(26px);
}
.help-text {
font-size: 12px;
color: #666;
margin-top: 2px;
}
.info-box {
background-color: #e7f3fe;
border: 1px solid #b6d4fe;
border-radius: 4px;
padding: 10px;
margin-bottom: 10px;
font-size: 13px;
color: #084298;
}
.example-box {
background-color: #fff3cd;
border: 1px solid #ffecb5;
border-radius: 4px;
padding: 10px;
margin-top: 5px;
font-size: 12px;
color: #664d03;
}
.radio-group {
display: flex;
flex-direction: column;
gap: 8px;
padding: 10px;
background-color: #f8f9fa;
border-radius: 4px;
}
.radio-option {
display: flex;
align-items: center;
gap: 8px;
}
.radio-option input[type="radio"] {
width: auto;
margin: 0;
}
.api-section {
border: 1px solid #ddd;
padding: 10px;
border-radius: 4px;
margin-top: 10px;
}
.api-section-title {
font-weight: bold;
margin-bottom: 8px;
}
.button-group {
display: flex;
gap: 10px;
margin-top: 10px;
}
.button-group button {
flex: 1;
margin-top: 0;
}
</style>
</head>
<body>
<div class="container">
<div class="info-box">
Extension này hoạt động với:
<ul style="margin: 5px 0; padding-left: 20px;">
<li>Trang tiếng Việt: Thay thế từ Việt bằng từ Anh</li>
<li>Trang tiếng Anh: Thay thế từ Anh bằng từ Việt</li>
</ul>
Ngôn ngữ trang web được tự động phát hiện.
</div>
<div style="display: flex; justify-content: space-between; align-items: center;">
<label>Enable/Disable Extension:</label>
<label class="switch">
<input type="checkbox" id="extensionToggle">
<span class="slider"></span>
</label>
</div>
<div>
<label>Chọn loại trang web để xử lý:</label>
<div class="radio-group">
<div class="radio-option">
<input type="radio" id="bothLanguages" name="pageLanguage" value="both">
<label for="bothLanguages">Cả trang tiếng Anh và tiếng Việt</label>
</div>
<div class="radio-option">
<input type="radio" id="englishOnly" name="pageLanguage" value="english">
<label for="englishOnly">Chỉ trang tiếng Anh</label>
</div>
<div class="radio-option">
<input type="radio" id="vietnameseOnly" name="pageLanguage" value="vietnamese">
<label for="vietnameseOnly">Chỉ trang tiếng Việt</label>
</div>
</div>
</div>
<div>
<label>API Provider:</label>
<select id="apiProvider">
<option value="openai">OpenAI</option>
<option value="gemini">Google Gemini</option>
</select>
</div>
<div class="api-section" id="openaiSection">
<div class="api-section-title">OpenAI Settings</div>
<div>
<label for="openaiKey">OpenAI API Key:</label>
<input type="password" id="openaiKey" placeholder="Enter your OpenAI API key">
</div>
<div>
<label for="openaiModel">Model:</label>
<select id="openaiModel">
<option value="gpt-4-mini">GPT-4-mini</option>
</select>
</div>
</div>
<div class="api-section" id="geminiSection" style="display: none;">
<div class="api-section-title">Google Gemini Settings</div>
<div>
<label for="geminiKey">Gemini API Key:</label>
<input type="password" id="geminiKey" placeholder="Enter your Gemini API key">
</div>
<div>
<label for="geminiModel">Model:</label>
<select id="geminiModel">
<option value="gemini-1.5-flash">Gemini 1.5 Flash</option>
</select>
</div>
</div>
<div>
<label for="replacementRate">Replacement Rate (%):</label>
<input type="number" id="replacementRate" min="1" max="100" value="20">
<div class="help-text">Tỉ lệ từ sẽ được thay thế trên trang</div>
</div>
<div>
<label for="blacklist">Website Blacklist:</label>
<textarea id="blacklist" placeholder="Enter one domain per line, example: example.com *.example.com"></textarea>
<div class="help-text">Cách cấu hình blacklist:</div>
<div class="example-box">
<strong>1. Chặn domain và tất cả subdomain:</strong>
<br>
Nhập: example.com
<br>
Sẽ chặn: example.com, abc.example.com, xyz.example.com
<br><br>
<strong>2. Chỉ định rõ việc chặn subdomain:</strong>
<br>
Nhập: *.example.com
<br>
Sẽ chặn: example.com và tất cả subdomain
<br><br>
<strong>Lưu ý:</strong> Không cần nhập http:// hoặc www.
Nếu bạn có yêu cầu cải thiện hoặc báo cáo lỗi hãy DM cho mình nhé <a href="https://www.facebook.com/nhsonit" target="_blank">Link này</a>
</div>
</div>
<div class="button-group">
<button id="saveButton">Save</button>
<button id="refreshButton">Refresh Words</button>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>