creesch
creesch
 Basically as discussed on discord earlier this week. I ended up putting the link to the right together with the delete button. Not entirely sure if it is the...
This is a follow up to #619 as only part of what I intended to do was implemented in the cache refactoring for manifest v3. # content_script side This was...
As discussed [in this PR](https://github.com/toolbox-team/reddit-moderator-toolbox/pull/631#discussion_r967716256), `getModSubs` can be refactored a bit more. > This feels really clunky... I think I'd prefer to just return an object like {mySubs, mySubsData} all...
Historybutton: show only last X months/weeks filter & percentage of comments where user is also OP.
https://www.reddit.com/r/toolbox/comments/5ja5zn/overly_simplistic_stats/ I am thinking the filter should be on by default and set to 12 months or so. I realize this is an edge case but I also know a...
https://www.reddit.com/r/toolbox/comments/78r7hi/idea_page_notes/ > I was wondering if this had been suggested before. Being able to add a note to a specific page for other moderators to see. For instance; you're sitting...
As already discussed on irc by @amici-ursi and @agentlame , things that we could do with it: - Individual setting to allow mods to pull RR from rules.json - Show...
Currently longer conversation open in a collapsed mode where the middle part of the conversation can be expanded. I personally find myself expanding them basically 99% of the time anyway...
There are some situations where the data is not reliable and all that.
Note, the modern multireddit not the old fashioned `mod-sub` thing. See https://github.com/creesch/reddit-moderator-toolbox/pull/836
So no more `var` and instead `let` and `const`: `const` for variables that will not be updated. `let` for variables that (possibly) will be updated. Note: `const` **doesn't** mean immutable...