This repository has been archived by the owner on Feb 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
options.html
115 lines (98 loc) · 2.21 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
107
108
109
110
111
112
113
114
115
<html>
<head>
<title>Hide Twitter Guff: Options</title>
<script src="options.js"></script>
<style rel="stylesheet" type="text/css">
body{
background-color:#ebeff9;
font-family:arial,sans-serif;
font-size:13px
}
#content{
background-color:#ffffff;
border-color:#b5c7de;
border-style:solid;
border-width:4px;
margin:40px auto 20px;
padding:12px;
width:300px;
-webkit-border-radius:12px
}
h1{
color:#333333;
font-size:1.5em;
margin:0.7em 0 0;
text-align:center
}
.option_row{
clear:left;
padding: 5px;
}
.option_name{
float:left;
font-weight:bold;
margin-top:3px;
width:13em
}
.option_picker{
float:left
}
.buttons{
clear:left;
padding:5px;
text-align: center;
}
#save_status{
background-color:#fff1a8;
font-weight:bold;
margin-left:10px;
opacity:0;
padding:3px;
-webkit-border-radius:3px
}
.footer{
text-align:center;
margin-top:0.4em
}
#msg{
background: #090;
-webkit-border-radius: 5px 5px;
color: #fff;
font-weight: bold;
padding: 5px;
text-align: center;
}
</style>
</head>
<body>
<div id="content">
<div align="center"><img src="twit128.png" title="Hide Twitter Guff"/></div>
<h1>Hide Twitter Guff</h1>
<p>You can choose which Guff you'd like to hide (everything is hidden by default).</p>
<p>I haven't provided an option to show/hide the promotional stuff or the Twitter definitions... I figured no one was interested in <strong>that</strong> guff.</p>
<div class="option_row">
<div class="option_name">
<label for="whotofollow">Who To Follow:</label></div>
<div class="option_picker">
<select id="whotofollow">
<option value="show">Show</option>
<option value="hide">Hide</option>
</select>
</div>
</div>
<div class="option_row">
<div class="option_name">
<label for="trends">Trends:</label></div>
<div class="option_picker">
<select id="trends">
<option value="show">Show</option>
<option value="hide">Hide</option>
</select>
</div>
</div>
<div class="buttons">
<button>Save my preferences</button></div>
<div id="msg" style="visibility: hidden;">Preferences Saved!<br>Refresh Twitter to see changes.</div>
</div>
</body>
</html>