Version 0.1.0.

Added infinite scroll to the public Forum threads, and added options page to adjust whether to enable infinite scrolling in thread lists and inside threads separately.
diff --git a/options.html b/options.html
new file mode 100644
index 0000000..48ce91e
--- /dev/null
+++ b/options.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<html>
+  <head>
+    <meta charset="utf-8">
+    <title>Options</title>
+  </head>
+  <body>
+    <p><input type="checkbox" id="list"><label for="list"> Enable infinite scrolling in thread lists.</label><br>
+    <input type="checkbox" id="thread"><label for="thread"> Enable infinite scrolling inside threads.</label></p>
+    <p style="text-align: center;"><button id="save">Save</button></p>
+    <script src="options.js"></script>
+  </body>
+</html>