This repository has been archived by the owner on Sep 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
106 lines (91 loc) · 3.06 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
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
<!DOCTYPE html>
<html>
<head>
<title>Options for Strava Feed Filter extension</title>
<style type="text/css">
body {
padding: 1em 2em;
background: #f8f8f8;
}
body,select,input,button {
font-family: sans-serif;
font-size: 12pt;
}
header .icon {
height: 2em;
}
footer {
margin-top: 3em;
font-size: 0.8em;
}
label.checker, span.select {
display: block;
margin-bottom: 0.5em;
}
</style>
</head>
<body>
<header>
<img class="icon" src="strava2-f1.128px.png" />
</header>
<h1>Strava Feed Filter Options</h1>
<p>This extension will hide commute and virtual (trainer) activities from your
personal <a href="https://www.strava.com/" target="_blank">Strava</a> activity feed page.</p>
<p>
Action to take:
<select id="action">
<option value="fade">Fade out</option>
<option value="hide">Hide completely</option>
</select>
</p>
<p>
<label class="checker">
<input type="checkbox" id="hide_commute" />
Hide commute activities
</label>
<label class="checker">
<input type="checkbox" id="hide_virtual" />
Hide virtual activities
</label>
<label class="checker">
<input type="checkbox" id="hide_challenge" />
Hide challenge activities
</label>
<label class="checker" for="showPhoto">
<input type="checkbox" id="showPhoto" />
Always show activities with photos
</label>
<span class="select">
<label for="showLongCycle">Always show rides over</label>
<select id="showLongCycle">
<option>0</option>
<option>20</option>
<option>50</option>
<option>100</option>
<option>120</option>
<option>150</option>
<option>200</option>
</select> miles
</span>
<span class="select">
<label for="autoPage">Auto load</label>
<select id="autoPage">
<option>0</option>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>10</option>
</select> more pages
</span>
</p>
<p>
<button id="save">Save settings</button> <span id="status"></div>
</p>
<footer>
<p>Vote for real feed filtering <a href="https://support.strava.com/hc/en-us/community/posts/208834647-Options-to-filter-and-sort-the-Dashboard-Feed-on-Strava" target="_blank">here</a>.</p>
</footer>
<script src="options.js"></script>
</body>
</html>