A firefox extension to autorefresh the feed every X seconds
1<!DOCTYPE html>
2<html>
3<head>
4 <title>Bluesky Auto Refresh Settings</title>
5 <style>
6 body {
7 width: 200px;
8 padding: 10px;
9 }
10 label {
11 display: block;
12 margin-bottom: 5px;
13 }
14 select {
15 width: 100%;
16 padding: 8px;
17 margin-bottom: 10px;
18 }
19 button {
20 padding: 8px 15px;
21 background-color: #007bff;
22 color: white;
23 border: none;
24 border-radius: 5px;
25 cursor: pointer;
26 }
27 </style>
28</head>
29<body>
30 <label for="refreshInterval">Refresh Interval (seconds):</label>
31 <select id="refreshInterval">
32 <option value="5">5</option>
33 <option value="10">10</option>
34 <option value="15" selected>15</option>
35 <option value="30">30</option>
36 <option value="60">60</option>
37 <option value="120">120</option>
38 </select>
39 <button id="saveInterval">Save</button>
40 <script src="popup.js"></script>
41</body>
42</html>