-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
57 lines (50 loc) · 1.23 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
<html xmlns="http://www.w3.org/1999/xhtml" dir="rtl" lang="he-IL">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<script type="text/javascript" src="jquery-2.0.2.js"></script>
<script type="text/javascript" src="popup.js"></script>
<style>
body{
width: 200px;
}
.hidden-set{
display: none;
}
</style>
</head>
<body>
<h2 id="settings-h2">
הגדרות
</h2>
<div>
<input type="checkbox" option-name="markNotHavePageInHamichlol">
<label>
סמן ערכים שלא נמצאים במכלול
</label>
</div>
<div>
<input type="checkbox" option-name="markPageInWikipedia">
<label>
סמן ערכים שנמצאים בויקיפדיה
</label>
</div>
<div>
<input type="checkbox" option-name="markBadWords">
<label>
נסה לסמן מילים בעייתיות
</label>
</div>
<div class="hidden-set">
<input type="checkbox" option-name="showLotImport">
<label>
הצג כפתורי יבוא המוני
</label>
</div>
<div class="hidden-set">
<input type="checkbox" option-name="showWikipediaCompare">
<label>
הצג כפתור השוואה מויקיפדיה
</label>
</div>
</body>
</html>