-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpopup.html
More file actions
23 lines (23 loc) · 915 Bytes
/
popup.html
File metadata and controls
23 lines (23 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
<title>Load Reddit Images Directly</title>
<style>
body {
width: 20em;
height: 17em;
}
</style>
</head>
<body>
<h1>Settings</h1>
<input type="checkbox" id="redirectToOriginalImage">
<label for="redirectToOriginalImage">Redirect preview images to the original image URL (i.redd.it) if possible</label>
<br>
<input type="checkbox" id="useOldAccept">
<label for="useOldAccept">Use the <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Content_negotiation/List_of_default_Accept_values#values_for_an_image">old Accept header used by Firefox prior to 47</a>, which does not have a preference for WebP.
<br>
<input type="checkbox" id="disableLightbox">
<label for="disableLightbox">Load image URL instead of lightbox (only on "/r/SUBREDDIT_NAME/comments/" pages, does not affect old.reddit.com)</label>
<script src="popup.js"></script>
</body>
</html>