Skip to content

Instantly share code, notes, and snippets.

@kael
Created January 26, 2022 22:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kael/9f8a879f3a42b5c9dcb246bfb778f69a to your computer and use it in GitHub Desktop.
Save kael/9f8a879f3a42b5c9dcb246bfb778f69a to your computer and use it in GitHub Desktop.
Greasemonkey Hypothesis Better Title
// ==UserScript==
// @name Hypothes.is Better Title
// @description Rewrite titles of Hypothesis users page for better bookmarking
// @author https://github.com/kael
// @see https://github.com/hypothesis/support/issues/257
// @version 1
// @grant none
// @include https://hypothes.is/users/*
// ==/UserScript==
window.onload = () => document.title = `Hypothesis / ${window.location.pathname.split("/users/")[1]}`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment