Three-Monkey Mind

Less to greater, bookmarklet edition

Lesser2Greater is a Chrome extension that redirects from lesswrong.com to greaterwrong.com. I’d like to use it, but I’m not a Chrome user. I do, however, use bookmarklets, so I made one to replicate Lesser2Greater’s functionality.

Here’s the bookmarklet in link form, which you can drag to your bookmarks bar:

Less to Greater

If you’re wondering what it does, have a look at the unminified, un-path-escaped source:

(() => {
  const loc = window.location;
  if (loc.hostname.match('lesswrong.com$')) {
    loc.hostname = loc.hostname.replace('lesswrong',
                                        'greaterwrong');
  }
})();

Inspired by Alisdair McDiarmid’s kill-sticky-headers page, which I highly recommend if you dislike sticky headers at the top of webpages.