FediAct/src/popup.html

46 wiersze
1.9 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<style>
.hide {
display: none;
}
</style>
</head>
<body>
<div id="mhi-wrapper">
<div id="mhi-containers">
<form id="fedifollow-settings">
<label for="homeinstance">Home instance (make sure you are logged in):</label><br>
<input type="text" id="homeinstance" name="homeinstance" placeholder="mastodon.social"><br>
<label for="alert">Alert on redirect:</label><br>
<input type="checkbox" id="alert" name="alert"><br>
<label for="target">Open in:</label><br>
<select name="target" id="target" selected="_blank">
<option id="target_blank" value="_blank">New tab</option>
<option id="target_self" value="_self">Same tab</option>
</select><br>
<label for="mode">Mode:</label><br>
<select name="mode" id="mode" selected="blacklist">
<option id="blacklist" value="blacklist">All (with blacklist)</option>
<option id="whitelist" value="whitelist">Whitelist</option>
</select><br>
<div class="hide" id="blacklist_input">
<label for="blacklist_content">Blacklist (one per line):</label><br>
<textarea id="blacklist_content" name="blacklist_content" placeholder="mastodon.social&#10;infosec.exchange"></textarea><br>
</div>
<div class="hide" id="whitelist_input">
<label for="whitelist_content">Whitelist (one per line):</label><br>
<textarea id="whitelist_content" name="whitelist_content" placeholder="mastodon.social&#10;infosec.exchange"></textarea><br>
</div><br>
<input type="submit" value="Submit">
<span id="indicator" style="display:none">Settings saved!</span>
<br><br><span>Made by <a target="_blank" href="https://github.com/lartsch">github.com/lartsch</a></span>
</form>
</div>
</div>
<script src="lib/jquery-3.6.1.min.js"></script>
<script src="popup.js"></script>
</body>
</html>