Subreddit Header Link

Changes the header link to current subreddit home on comment pages.

  1. // ==UserScript==
  2. // @namespace raina
  3. // @version 1.0
  4. // @name Subreddit Header Link
  5. // @description Changes the header link to current subreddit home on comment pages.
  6. // @match *://*.reddit.com/*/comments/*
  7. // @grant none
  8. // ==/UserScript==
  9. document.getElementById("header-img").href = window.location.href.replace(/comments.*$/, "");