Skip to content

Commit

Permalink
Improving option descriptions based on user feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
wingman-jr-addon committed Jul 30, 2022
1 parent 6d09659 commit 457cb71
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions options.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,24 @@
<body>
<form>
<h4>Which zone should be the default?</h4>
<input type="radio" name="default_zone" id="default_zone_automatic" value="automatic"><label for="default_zone_automatic">Automatic</label> <br />
<input type="radio" name="default_zone" id="default_zone_trusted" value="trusted"><label for="default_zone_trusted">Trusted</label> <br />
<input type="radio" name="default_zone" id="default_zone_neutral" value="neutral" checked><label for="default_zone_neutral">Neutral</label><br />
<input type="radio" name="default_zone" id="default_zone_untrusted" value="untrusted" checked><label for="default_zone_untrusted">Untrusted</label><br />
This addon uses the concept of "zones" to indicate how strictly it filters images. <br /> <br />
<input type="radio" name="default_zone" id="default_zone_automatic" value="automatic"><label for="default_zone_automatic"><b>Automatic</b> - Automatically change zones based on how many unsafe images have been detected recently</label> <br />
<input type="radio" name="default_zone" id="default_zone_trusted" value="trusted"><label for="default_zone_trusted"><b>Trusted</b> - prefer blocking fewer safe images, but may let more unsafe ones slip through</label> <br />
<input type="radio" name="default_zone" id="default_zone_neutral" value="neutral" checked><label for="default_zone_neutral"><b>Neutral</b> - strike a balance between accidentally block safe images and letting unsafe ones through</label><br />
<input type="radio" name="default_zone" id="default_zone_untrusted" value="untrusted" checked><label for="default_zone_untrusted"><b>Untrusted</b> - prefer blocking unsafe content at the expense of blocking many safe images as well</label><br />
<br />
<h4>Show an on/off switch on the main menu?</h4>
Add a switch to turn filtering on and off quickly while browsing. <b>Note:</b> already-blocked images will only reappear when the cache is cleared - hit shift+refresh on the page to reload it fully. <br /> <br />
<input type="radio" name="on_off_shown" id="on_off_shown_yes" value="on_off_shown_yes"><label for="on_off_shown_yes">Yes</label>
<input type="radio" name="on_off_shown" id="on_off_shown_no" value="on_off_shown_no" checked><label for="on_off_shown_no">No</label><br />
<br />
<h4>Video blocking?</h4>
Video blocking requires quite a bit of processing, and the accuracy is currently lower due to technical limitations. <br /> <br />
<input type="radio" name="is_video_blocking_disabled" id="is_video_blocking_disabled_no" value="is_video_blocking_disabled_no" checked><label for="is_video_blocking_disabled_no">Enabled</label>
<input type="radio" name="is_video_blocking_disabled" id="is_video_blocking_disabled_yes" value="is_video_blocking_disabled_yes"><label for="is_video_blocking_disabled_yes">Disabled</label><br />
<br />
<h4>Silent mode?</h4>
Instead of showing a blocked icon, instead choose a placeholder image. <br /> <br />
<input type="radio" name="is_silent_mode_enabled" id="is_silent_mode_enabled_yes" value="is_silent_mode_enabled_yes" checked><label for="is_silent_mode_enabled_yes">Enabled</label>
<input type="radio" name="is_silent_mode_enabled" id="is_silent_mode_enabled_no" value="is_silent_mode_enabled_no"><label for="is_silent_mode_enabled_no">Disabled</label><br />
<a href="silent_credits.html" target="_blank">View the image credits</a> <br />
Expand Down

0 comments on commit 457cb71

Please sign in to comment.