metamorpov/src/popup/popup.html

70 lines
2.3 KiB
HTML
Raw Normal View History

2015-02-21 22:00:28 -05:00
<!DOCTYPE html>
<meta charset="UTF-8">
2015-02-21 22:00:28 -05:00
<html>
2019-10-19 05:27:27 -04:00
<head>
<link href='popup.css' rel='stylesheet' type='text/css'>
<script src="popup.js" type="text/javascript"></script>
</head>
<body>
2024-12-19 04:26:24 -05:00
<h1>Website name here</h1>
<h1>MetamorPOV is <b>TODO</b> for this website</h1>
2019-10-19 05:27:27 -04:00
<form id="change-name-form">
<input type="text" id="change-name-form-text"/>
<input type="submit" class="change" value="Change"/>
2019-10-19 07:05:20 -04:00
</form>
2024-12-19 04:26:24 -05:00
2019-10-19 05:27:27 -04:00
<details>
<summary>Need to replace something other than Y/N?</summary>
<p><small>This change will go away when you refresh/go to another page unless you check the box next to "Store this replacement".</small></p>
<p>
<form id="replace-other-words-form" class="other-words">
<label>
<span>Value (e.g. L/N, E/C, etc):</span>
<input type="text" id="replace-word" class="other"/>
</label>
<label>
<input type="checkbox" id="is-case-sensitive">Case sensitive
</label>
<br><br>
2019-10-19 05:27:27 -04:00
<label>
<span>Replace with:</span>
<input type="text" id="replace-with" class="replace-with"/>
2019-10-19 05:27:27 -04:00
</label>
<br>
2019-10-19 05:27:27 -04:00
<label>
<input type="checkbox" id="is-perm">Store this replacement
</label>
<input type="submit" class="change" value="Change">
</form>
</p>
</details>
<details>
<summary id="show-saved">Stored Replacements</summary>
<p><small>To remove, simply click on a replacement. To change, re-enter in the previous section.</small></p>
<div class="saved-items-list-wrapper">
<ul id="saved-items-list">
</ul>
</div>
</details>
2024-12-19 04:26:24 -05:00
<div>
2019-10-19 05:27:27 -04:00
<details>
<summary>⚙️ Settings</summary>
2024-12-19 04:26:24 -05:00
<div><input type="checkbox" id="enable-observer"> Auto-detect page changes <small>(Wattpad support)</small><br></div>
<div><input type="checkbox" id="pause"> Pause extension on "<span id="this-url"></span>"<br></div>
2020-10-18 09:26:41 -04:00
<input type="checkbox" id="deactivate"> Deactivate extension
2019-10-19 05:27:27 -04:00
</details>
2016-06-18 23:04:38 -04:00
</div>
2024-12-19 04:26:24 -05:00
<input type="button" id="refresh-replacements" value="Refresh replacements"/>
<ul class="links">
<li><a href="https://git.viscogliosi-pate.com/jean/metamorpov/wiki" target="_blank">How to write for MetamorPOV</a></li>
<li><a href="https://git.viscogliosi-pate.com/jean/metamorpov/issues" target="_blank">Report an issue</a></li>
<li><a href="https://git.viscogliosi-pate.com/jean/metamorpov" target="_blank">Source code</a></li>
</ul>
2019-10-19 05:27:27 -04:00
</body>
2024-12-19 04:26:24 -05:00
</html>