-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
33 lines (27 loc) · 1.22 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<style>
</style>
</head>
<body>
<h1>TT-RSS Checker Settings</h1><br><br>
<label for="domain">Domain:</label><br>
<input type="text" id="domain" value="rss.example.com"><br><br>
<label for="domain_path">sub directory path: (start/end with a "/")</label><br>
<input type="text" id="domain_path" value="/exmple/"><br><br>
<label for="protocol">Protocol:</label><br>
<input type="text" id="protocol" value="https"><br><br>
<label for="tt_rss_username">Username:</label><br>
<input type="text" id="tt_rss_username" value="admin"><br><br>
<label for="port">Port: set the port of the tt-rss service, if you are not sure set 80 for http and 443 for https</label><br>
<input type="text" id="port" value="443"><br><br>
<label for="interval">Check interval: How many min before the number of unread feed item is checked agian</label><br>
<input type="text" id="interval" value="5"><br><br>
<div>
<p>After saving the new settings the extension will request permision for the relevant domain. This is used for requesting the number of unread feed items only.</p>
</div>
<input type="button" id="save_me" value="Update Settings">
</body>
<script src="options.js"></script>
</html>