Files
remove-youtube-suggestions/chrome/options.html
T
2021-07-24 15:09:11 -04:00

102 lines
3.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/options.css">
</head>
<body>
<fieldset>
<legend>Choose suggestions to remove</legend>
<div>
<input type="checkbox" id="remove_homepage" name="feature"
value="remove_homepage" checked />
<label for="remove_homepage">Homepage</label>
</div>
<div>
<input type="checkbox" id="remove_sidebar" name="feature"
value="remove_sidebar" checked />
<label for="remove_sidebar">Sidebar</label>
</div>
<div>
<input type="checkbox" id="remove_end_of_video" name="feature"
value="remove_end_of_video" checked />
<label for="remove_end_of_video">End of Video</label>
</div>
</fieldset>
<fieldset>
<legend>More removal options</legend>
<div>
<input type="checkbox" id="remove_info_cards" name="feature"
value="remove_info_cards" unchecked />
<label for="remove_info_cards">In-Video Info Cards</label>
</div>
<div>
<input type="checkbox" id="remove_trending" name="feature"
value="remove_trending" unchecked />
<label for="remove_trending">Link to Explore Page</label>
</div>
<div>
<input type="checkbox" id="remove_comments" name="feature"
value="remove_comments" unchecked />
<label for="remove_comments">Video Comments</label>
</div>
<div>
<input type="checkbox" id="remove_chat" name="feature"
value="remove_chat" unchecked />
<label for="remove_chat">Live-Stream Chat</label>
</div>
</fieldset>
<fieldset>
<legend>Redirect Homepage</legend>
<div>
<input type="radio" id="redirect_off" name="redirect"
value="redirect_off" checked />
<label for="redirect_off">Off</label>
</div>
<div>
<input type="radio" id="redirect_to_subs" name="redirect"
value="redirect_to_subs" unchecked />
<label for="redirect_to_subs">to Subscriptions</label>
</div>
<div>
<input type="radio" id="redirect_to_wl" name="redirect"
value="redirect_to_wl" unchecked />
<label for="redirect_to_wl">to Watch Later</label>
</div>
</fieldset>
<div id="reload_container">
<div id="reload_header">
Not loading correctly?
</div>
<button id="reload_button">Refresh</button>
</div>
<div id="help_container">
<div id="help_header">
Help us make this addon better!
</div>
<hr>
Submit feedback <a href="https://docs.google.com/forms/d/e/1FAIpQLScdrPlVKpJTGeDhD85HdYD2opsedlPqaMdN3ZW-ZSRwhqBZpw/viewform">here</a>.
<br>
Donate <a href="https://www.paypal.com/donate/?cmd=_donations&business=FF9K9YD6K6SWG&currency_code=USD&amount=5">here</a>.
</div>
<script src="js/reload.js"></script>
<script src="js/options.js"></script>
</body>
</html>