mirror of
https://github.com/thebaer/MMRA
synced 2024-11-13 10:11:01 +00:00
54 lines
953 B
HTML
54 lines
953 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Make Medium Readable Again Settings</title>
|
|
<style>
|
|
body: { padding: 10px; }
|
|
label {
|
|
display: block;
|
|
margin: 1em 0;
|
|
}
|
|
#status {
|
|
font-size: 1.1em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<h2>Personal Preferences</h2>
|
|
|
|
<label>
|
|
<input type="checkbox" id="dickbar"> Hide sharing dickbar
|
|
</label>
|
|
|
|
<label>
|
|
<input type="checkbox" id="images"> Disable lazy image loading
|
|
</label>
|
|
|
|
<label>
|
|
<input type="checkbox" id="ridiculousHeader"> Make ridiculous massive header images viewable
|
|
</label>
|
|
|
|
<hr />
|
|
|
|
<h2>Defaults</h2>
|
|
|
|
<label>
|
|
<input type="checkbox" checked="checked" disabled="disabled"> Un-stick top navigation bar
|
|
</label>
|
|
|
|
<label>
|
|
<input type="checkbox" checked="checked" disabled="disabled"> Hide bottom <em>Get Updates</em> bar
|
|
</label>
|
|
|
|
<hr />
|
|
|
|
<p id="status"></p>
|
|
|
|
<button id="save">Save</button>
|
|
|
|
<script src="options.js"></script>
|
|
|
|
</body>
|
|
</html>
|