Skip to content

Commit e72e271

Browse files
committed
Add backup functionality, enable account selection for auto-tagging, and support tagging for all tags
1 parent aee96fc commit e72e271

File tree

3 files changed

+292
-104
lines changed

3 files changed

+292
-104
lines changed

src/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 2,
33
"name": "PrioMailbox",
4-
"version": "0.11.9",
4+
"version": "1.00.0",
55
"default_locale": "en",
66
"description": "PrioMailbox organizes your emails in Thunderbird with intelligent, trainable tags. Important messages are highlighted, while unimportant ones are hidden.",
77
"icons": {

src/settings/settings.html

+7-8
Original file line numberDiff line numberDiff line change
@@ -108,15 +108,15 @@
108108
display: none;
109109
}
110110

111-
/* Zusätzliche CSS für den Trenner und den Rahmen */
111+
/* Additional CSS for the separator and frame */
112112
#all-accounts-section {
113113
padding-bottom: 10px;
114114
margin-bottom: 10px;
115115
display: flex;
116116
align-items: center;
117117
}
118118

119-
/* Stil für die spezielle "Alle Konten" Checkbox */
119+
/* Style for the special "All Accounts" checkbox */
120120
#all-accounts-checkbox {
121121
transform: scale(1.2);
122122
margin-right: 10px;
@@ -127,15 +127,15 @@
127127
color: #2c3e50;
128128
}
129129

130-
/* Rahmen für die individuellen Konten-Checkboxen */
130+
/* Frame for individual account checkboxes */
131131
#individual-accounts-container {
132132
border: 1px solid #ccc;
133133
border-radius: 8px;
134134
padding: 10px;
135135
background-color: #f9f9f9;
136136
}
137137

138-
/* Optional: Stil für die individuellen Konten-Checkboxen */
138+
/* Optional: Style for individual account checkboxes */
139139
.account-item input[type='checkbox'] {
140140
transform: scale(1.1);
141141
margin-right: 10px;
@@ -150,16 +150,16 @@
150150
<body>
151151
<h1 id="settings-title"></h1>
152152
<form id="settings-form">
153-
<!-- Automatisches Taggen -->
153+
<!-- Automatic Tagging -->
154154
<h2 id="auto-tag-title"></h2>
155155
<div id="accounts-container">
156-
<!-- Abschnitt für "Alle Konten auswählen" mit Trenner -->
156+
<!-- Section for "Select All Accounts" with separator -->
157157
<div id="all-accounts-section" class="account-item">
158158
<input type="checkbox" id="all-accounts-checkbox">
159159
<label for="all-accounts-checkbox" id="all-accounts-label"></label>
160160
</div>
161161

162-
<!-- Individuelle Kontenliste mit Rahmen -->
162+
<!-- Individual accounts list with frame -->
163163
<div id="individual-accounts-container" style="display: none;"></div>
164164
</div>
165165

@@ -196,7 +196,6 @@ <h2 id="backup-restore-title"></h2>
196196

197197
<script src="../libs/jszip.min.js"></script>
198198
<script src="settings.js"></script>
199-
<script src="settingsx.js"></script>
200199

201200
</body>
202201
</html>

0 commit comments

Comments
 (0)