Danbooru

Mark all as read

Posted under Bugs & Features

Is it possible to send a warning/confirmation before marking all as read? I always hit that button on accident (when I intended to create a new topic mostly), and all the unread forums are lost...

  • Reply
  • If you can use userscripts, this will help:

    // ==UserScript==
    // @name        Danbooru confirm mark all as read
    // @include     /^https?://\w+.donmai.us/forum_topics(/.*)?/
    // @version     0.1.0
    // @author      Nameless Contributor
    // ==/UserScript==
    
    document.getElementById('subnav-mark-all-as-read-link')?.setAttribute('data-confirm', 'Are you sure you want to mark all topics as read?');
  • Reply
  • 1