CDRM-Project/templates/extension.html

26 lines
1.0 KiB
HTML
Raw Permalink Normal View History

2024-09-09 00:13:39 +00:00
<!-- Extend the base HTML template -->
{% extends "base.html" %}
<!-- Extend CSS to add CSS for particular page -->
{% block css %}
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/extension.css') }}">
{% endblock %}
<!-- Main body block -->
{% block main_body %}
<main>
<h1> WVGuesserExtension-NextGen: CDRM-Edition </h1>
<div>
<pre>
Slightly modified version of <a class="fox" href="https://github.com/FoxRefire">FoxRefire's</a> extension <a class="fox" href="https://github.com/FoxRefire/wvg">WVGuesserExtension-NextGen</a>
<br>
How to use: Follow step 3 from the original github page linked above with the version of the extension down below, that's it! No configuration needed.
<br>
<button id="ex_button" class="extension_download_button"><a id="ex_a" class="extension_download_button" href="/download-extension">Download</a> </button>
</pre>
</div>
</main>
<!-- End main block -->
{% endblock %}