Stormlight Archive Summary Reducer latest version (currently v1.0.0)

← Back to Bookmarklets

For use on: Coppermind

This bookmarklet simplifies Stormlight Archive chapter summaries on the Coppermind wiki by hiding everything except the Plot Summary.

Installation

To install this bookmarklet, drag the link below to your bookmarks bar:

Stormlight Archive Summary Reducer

Alternative: Right-click the link above and select "Bookmark This Link" or "Add to Bookmarks".

Script Content

Below is the JavaScript code that runs when you click the bookmarklet:

(function() {
  [...document.querySelectorAll('div.pillars')].forEach(elem => elem.style
    .display = 'none');
  [...document.querySelectorAll('div.center:has(img)')].forEach(elem => elem
    .style.display = 'none');
  [...document.querySelectorAll('blockquote')].forEach(elem => elem.style
    .display = 'none');
})();