mirror of
https://github.com/hexahigh/games.git
synced 2025-12-11 20:15:38 +01:00
62 lines
2.9 KiB
HTML
62 lines
2.9 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Ncage++ Options</title>
|
|
<!-- It's important to load the image libraries here so options.js can have access to them -->
|
|
<script src="ncageImages.js"></script>
|
|
<script src="AjaxImages.js"></script>
|
|
<script src="rubberDuckImages.js"></script>
|
|
<script src="animeGirlImages.js"></script>
|
|
<script src="Mogus.js"></script>
|
|
<link rel="stylesheet" href="./css/style.css">
|
|
</head>
|
|
<body class=ncBody>
|
|
<h1>Welcome to nCage++!</h1>
|
|
<p class="ncHeader">This is the options page, where you can specify how you would like the extension to behave.</p>
|
|
<p class="ncHeader">You can go ahead and close this tab after you've set everything up. From here on out, the script will run on every webpage until the extension is disabled! You can always navigate back to this page from the extension settings.</p>
|
|
<div class="ncCategory">
|
|
<h2>Image Replacement</h2>
|
|
<div class=ncOptionAttribute>
|
|
<label>Enable Image Replacement:</label>
|
|
<input id="enableImageReplacement" type="checkbox" checked="true">
|
|
</div>
|
|
|
|
<div class=ncOptionAttribute>
|
|
<label>Image Replacement Rate:</label>
|
|
<input class="ncShortInput" id="imgReplaceProb" type="number" min="0" max="100" value="1"> <label>%</label> (I recommend somewhere around 1% for <i>moderate</i> subtlety. Seriously!)
|
|
</div>
|
|
|
|
<div class=ncOptionAttribute>
|
|
<label>Select a library of images to use:</label>
|
|
<select name="libs" id="imageLibrary">
|
|
<option value="nCage">Nicholas Cage</option>
|
|
<option value="rubberDucks">Rubber Ducks</option>
|
|
<option value="animeGirls">Anime Girls</option>
|
|
<option value="censored">Censored</option>
|
|
<option value="Ajax">My cat</option>
|
|
<option value="Mogus">Mogus</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div class=ncOptionAttribute>
|
|
<label>Increase image replacement by</label>
|
|
<input class="ncShortInput" id="incrementValue" type="number" min="0" max="100" value="0">
|
|
<label>% every</label>
|
|
<select name="interval" id="incrementInterval">
|
|
<option value="3600000">Hour</option>
|
|
<option value="86400000">Day</option>
|
|
<option value="604800000">Week</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div id="ncStatus"></div>
|
|
<button class="ncSaveButton" id="saveImageOptions">Save Image Settings</button>
|
|
</div>
|
|
<div class="ncFooter">
|
|
<p>How was your experience? Do you have any funny stories to share? Feedback? Bug reports? Feature requests? <a href="https://chrome.google.com/webstore/detail/ncage%2B/blenoallcdijagcfhdbidjiimoandabh">Let me know!</a></p>
|
|
</div>
|
|
|
|
<script src="options.js"></script>
|
|
</body>
|
|
</html>
|