1
0
mirror of https://github.com/aureliendavid/rsspreview.git synced 2025-08-26 05:15:33 +00:00
rsspreview/settings/options.html
Jon Banafato 6f1bba64d9 Add option to preview full feed contents
Currently, if a feed provides summaries of posts, it's not possible to
view the full content within the preview page. This change adds a new
option to choose between summary and full contents.
2019-02-27 22:45:16 -05:00

33 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<label class="setting browser-style"><input type="checkbox" id="doDetect" class="validate" > Enable feed detection</label>
<hr />
<label class="setting browser-style"><input type="checkbox" id="preventPreview" class="validate" > Display raw xml instead of preview page</label>
<hr />
<label class="setting browser-style"><input type="checkbox" id="fullPreview" class="validate" > Display full articles even when summaries are present</label>
<hr />
<label class="setting browser-style"><input type="checkbox" id="doThumb" class="validate" > Display media:thumbnail images</label>
<label class="setting browser-style">
<input type="checkbox" id="doMaxWidth" class="validate" > Set max-width for images at
<input type="text" id="valMaxWidth" class="validate" >
</label>
<hr />
<label class="setting browser-style"><input type="checkbox" id="enableCss" class="validate" > Enable custom CSS:</label><br />
<textarea class="setting browser-style validate" id="customCss" rows="7" cols="50" style="font-family: monospace;"></textarea>
<script src="options.js"></script>
</body>
</html>