This repository was archived by the owner on May 10, 2026. It is now read-only.
forked from martinkadlec0/Smart-RSS
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathoptions.html
More file actions
348 lines (304 loc) · 13.4 KB
/
Copy pathoptions.html
File metadata and controls
348 lines (304 loc) · 13.4 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
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
<!DOCTYPE html>
<html dir="ltr" lang="en">
<head>
<meta charset="utf-8">
<title>Smart RSS - Options</title>
<link href="styles/option.css" rel="stylesheet">
<script src="scripts/options/options.js"></script>
</head>
<body>
<article id="content">
<header id="logo">
<i id="logo-icon"></i>
<h1>Smart RSS</h1>
</header>
<section>
<h2 class="section-header">Localization</h2>
<label class="web-content-select-label" title="Contact me if you want to make translation for your lang.">
<span class="selectLabel">Language:</span>
<select id="lang">
<option value="en">English</option>
<option value="cs">Čeština</option>
<option value="sk">Slovenčina</option>
<option value="de">Deutsch</option>
<option value="tr">Türkçe</option>
<option value="pl">Polski</option>
<option value="ru">Русский</option>
<option value="hu">Magyar</option>
<option value="nl">Nederlands</option>
<option value="fr">Français</option>
<option value="pt">Português</option>
<option value="hr">Hrvatski</option>
</select>
</label>
<label class="web-content-select-label" title="Normal = DD.MM.YYYY, ISO = YYYY-MM-DD, US = MM/DD/YYYY">
<span class="selectLabel">Date format:</span>
<select id="dateType">
<option value="normal">Normal</option>
<option value="iso">ISO</option>
<option value="us">US</option>
</select>
</label>
<label class="web-content-select-label" title="Time format">
<span class="selectLabel">Time format:</span>
<select id="hoursFormat">
<option value="24h">24h</option>
<option value="12h">12h (AM/PM)</option>
</select>
</label>
</section>
<section>
<h2 class="section-header">Appearance</h2>
<label class="web-content-select-label">
<span class="selectLabel">Layout:</span>
<input alt="horizontal" src="images/layout_horizontal.png" type="image" value="horizontal"/>
<input alt="vertical" src="images/layout_vertical.png" type="image" value="vertical"/>
</label>
<label class="web-content-select-label" for="sortBy">
<span class="selectLabel">Sorting:</span>
<select class="half-size" data-name="sortBy" id="sortBy">
<option value="date">Date</option>
<option value="title">Title</option>
<option value="author">Author</option>
</select>
<select class="half-size" data-name="sortOrder" id="sortOrder">
<option value="desc">Descending</option>
<option value="asc">Ascending</option>
</select>
</label>
<label class="web-content-select-label" for="sortBy2">
<span class="selectLabel">Secondary sorting:</span>
<select class="half-size" data-name="sortBy2" id="sortBy2">
<option value="date">Date</option>
<option value="title">Title</option>
<option value="author">Author</option>
</select>
<select class="half-size" data-name="sortOrder2" id="sortOrder2">
<option value="desc">Descending</option>
<option value="asc">Ascending</option>
</select>
</label>
<label class="web-content-select-label" for="showFullHeadline">
<span class="selectLabel">Show full headline:</span>
<select class="half-size" data-name="showFullHeadline" id="showFullHeadline">
<option value=1>Yes</option>
<option value=0>No</option>
</select>
</label>
<label class="web-content-select-label" for="lines">
<span class="selectLabel">Article list display mode:</span>
<select class="half-size" data-name="lines" id="lines">
<option value=1>One Line</option>
<option value=2>Two Lines</option>
</select>
</label>
<label class="web-content-select-label" title="Color of icon that shows up in extension button when new articles are downloaded.">
<span class="selectLabel">New articles notification icon:</span>
<select id="icon">
<option value="orange">Orange</option>
<option value="blue">Blue</option>
<option value="green">Green</option>
<option value="purple">Purple</option>
<option value="red">Red</option>
<option value="royalblue">Royal Blue</option>
</select>
</label>
<label class="web-content-select-label" title="Color of icon that shows up in extension button when new articles are downloaded.">
<span class="selectLabel">New sources found icon:</span>
<select id="sourcesFoundIcon">
<option value="arrow-orange">Arrow Orange</option>
<option value="orange">Orange</option>
<option value="blue">Blue</option>
<option value="green">Green</option>
<option value="purple">Purple</option>
<option value="red">Red</option>
<option value="royalblue">Royal Blue</option>
</select>
</label>
<label class="web-content-select-label" title="Controls whether media preview should be visible when displaying article contents. Can be overridden per source">
<span class="selectLabel">Open media preview automatically:</span>
<select id="openEnclosure">
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
</label>
<label class="web-content-select-label">
<span class="selectLabel">Disable date groups:</span>
<input id="disableDateGroups" type="checkbox"/>
</label>
<label class="web-content-select-label">
<span class="selectLabel">Article font size:</span>
<input id="articleFontSize" max="150" min="50" step="10" type="number"/>%
</label>
<label class="web-content-select-label">
<span class="selectLabel">UI font size:</span>
<input id="uiFontSize" max="150" min="50" step="10" type="number"/>%
</label>
<label class="web-content-select-label" title="Replace favicon of feed with spinner animation during feed update.">
<span class="selectLabel">Show spinner during update:</span>
<input id="showSpinner" type="checkbox"/>
</label>
</section>
<section>
<h2 class="section-header">Behaviour</h2>
<label class="web-content-select-label" title="If checked clicking toolbar button will open new tab, else it will load reader in the same tab.">
<span class="selectLabel">Open Reader in new tab:</span>
<input id="openInNewTab" type="checkbox"/>
</label>
<label class="web-content-select-label">
<span class="selectLabel">Select first article on feed selection:</span>
<input id="selectFirstArticle" type="checkbox"/>
</label>
<label class="web-content-select-label">
<span class="selectLabel">Select all feeds on reader open:</span>
<input id="selectAllFeeds" type="checkbox"/>
</label>
<label class="web-content-select-label" title="This option will immediately mark as read every article you visit in the right column.">
<span class="selectLabel">Automatically mark articles as read:</span>
<input id="readOnVisit" type="checkbox"/>
</label>
<label class="web-content-select-label" title="When you select more than 10 feeds in article list and choose 'Open article link' options from context menu.">
<span class="selectLabel">Ask when opening 10+ tabs:</span>
<input id="askOnOpening" type="checkbox"/>
</label>
<label class="web-content-select-label" title="Effects date in article list.">
<span class="selectLabel">Always show full date:</span>
<input id="fullDate" type="checkbox"/>
</label>
<label class="web-content-select-label" title="If enabled, pressing arrow up in a list when the first item is selected will select the last item and visa-versa.">
<span class="selectLabel">Circular navigation:</span>
<input id="circularNavigation" type="checkbox"/>
</label>
<label class="web-content-select-label" title="If enabled, title of article is a link to full article.">
<span class="selectLabel">Title is link to full article:</span>
<input id="titleIsLink" type="checkbox"/>
</label>
<label class="web-content-select-label" title="Controls how to handle `Enter` press on article list">
<span class="selectLabel">Enter opens articles in:</span>
<select id="openNewTab">
<option value="background">Background</option>
<option value="foreground">Foreground</option>
</select>
</label>
<label class="web-content-select-label" title="Ask to prevent accidental removal of pinned items.">
<span class="selectLabel">Ask when removing pinned items:</span>
<select id="askRmPinned">
<option value="none">Never</option>
<option value="trashed">On removal from trash</option>
<option value="all">Always</option>
</select>
</label>
<label class="web-content-select-label">
<span class="selectLabel">Icon badge:</span>
<select id="badgeMode">
<option value="disabled">disabled</option>
<option value="unread"># of unread</option>
<option value="unvisited"># of unvisited</option>
<option value="sources"># of sources</option>
</select>
</label>
<label class="web-content-select-label">
<span class="selectLabel">Concurrent downloads:</span>
<input id="concurrentDownloads" max="32" min="1" step="1" type="number"/>
</label>
<label class="web-content-select-label">
<span class="selectLabel">Disable auto update completely:</span>
<input id="disableAutoUpdate" type="checkbox"/>
</label>
<label class="web-content-select-label">
<span class="selectLabel">Default update frequency (minutes):</span>
<input id="updateFrequency" max="180" min="1" step="1" type="number"/>
</label>
</section>
<section id="hotkeys">
<h2 class="section-header">Hotkeys</h2>
</section>
<section>
<h2 class="section-header">Sound notifications</h2>
<label class="web-content-select-label" title="If enabled, browser will make a sound when new articles are downloaded.">
<span class="selectLabel">Enable sound notifications:</span>
<input id="soundNotifications" type="checkbox"/>
</label>
<label class="web-content-select-label">
<span class="selectLabel">Use sound:</span>
<select id="useSound">
<option value=":user">User sound</option>
<option value=":none">None</option>
<optgroup label="Default sounds">
<option value="knock">Knock</option>
<option value="taptap">Taptap</option>
<option value="glass">Glass</option>
<option value="pop">Pop</option>
<option value="nightbird">Nightbird</option>
</optgroup>
</select>
</label>
<label class="web-content-select-label" title="Select sound file to be played.">
<span class="selectLabel">User sound:</span>
<input id="default-sound" type="file"/>
</label>
<label class="web-content-select-label">
<span class="selectLabel">Volume:</span>
<span class="valspan">0% <input id="soundVolume" max="1" min="0" step="0.05" type="range"/> 100%</span>
</label>
</section>
<section>
<label class="web-content-select-label">
<span class="selectLabel">User CSS:</span>
<textarea id="userStyle"></textarea>
<br>
<button id="reset-style">Reset style</button>
</label>
</section>
<section>
<h2 class="section-header">Export</h2>
<label class="web-content-select-label" title="SMART is special format of Smart RSS extension. It exports/imports both, feeds and feeds's articles.">
<span class="selectLabel">SMART:</span>
<button id="export-smart">Export</button>
<a href="" id="smart-exported"></a>
</label>
<label class="web-content-select-label" title="You can use OPML format to export feeds from Smart RSS to Opera 12.">
<span class="selectLabel">OPML:</span>
<button id="export-opml">Export</button>
<a href="" id="opml-exported"></a>
</label>
</section>
<section>
<h2 class="section-header">Import</h2>
<div class="ff-warning">Warning: Smart RSS will reload after finishing the SMART import, it's expected
behavior
</div>
<label class="web-content-select-label" title="SMART is special format of Smart RSS extension. It exports/imports all feeds, folders and articles.">
<span class="selectLabel">SMART:</span>
<input id="import-smart" type="file">
<span id="smart-imported"></span>
</label>
<label class="web-content-select-label" title="You can use OPML format to import feeds and folders from Opera 12 to Smart RSS.">
<span class="selectLabel">OPML:</span>
<input id="import-opml" type="file">
<span id="opml-imported"></span>
</label>
</section>
<section>
<h2 class="section-header">Clear Favicons</h2>
<label class="web-content-select-label" title="This will remove all yours feeds and articles and settings.">
<span class="selectLabel">Remove Favicon data:</span>
<button id="clear-favicons">!!Clear!!</button>
<span id="favicons-cleared"></span>
</label>
</section>
<section>
<h2 class="section-header">Clear data</h2>
<label class="web-content-select-label" title="This will remove all yours feeds and articles and settings.">
<span class="selectLabel">Remove ALL extension data:</span>
<button id="clear-data">!!Clear!!</button>
<span id="data-cleared"></span>
</label>
</section>
<footer>
<h2 class="section-header">Version</h2>
<p id="version"></p>
</footer>
</article>
</body>
</html>