Are you a Scrimba instructor or student? Do you find the console log toasts a bit distracting?

These 2 bookmarklets can help!

Drag These Link to Your Bookmark Bar:

Scrimba No Log Toast

Scrimba Clear Logs

You can see an overview of how they help and what they are doing here:


Here is the code for the two bookmarklets:

# Scrimba No Log Toast
javascript: (function () {
   var style = document.createElement('style');
   style.textContent = '.LogEntryTip {display: none !important}';
   document.head.append(style);
})();
# Scrimba Clear Logs
javascript: (function () {
   var logs = document.querySelector('.Logs');
   logs.innerText = '';
})();