Add fluoride mode

This commit is contained in:
r 2020-01-08 18:16:06 +00:00
parent ca711e62ec
commit a8dbbec988
11 changed files with 243 additions and 32 deletions

View file

@ -5,6 +5,7 @@ type Settings struct {
CopyScope bool `json:"copy_scope"`
ThreadInNewTab bool `json:"thread_in_new_tab"`
MaskNSFW bool `json:"mask_nfsw"`
FluorideMode bool `json:"fluoride_mode"`
}
func NewSettings() *Settings {
@ -13,5 +14,6 @@ func NewSettings() *Settings {
CopyScope: true,
ThreadInNewTab: false,
MaskNSFW: true,
FluorideMode: false,
}
}