Skip to content

Instantly share code, notes, and snippets.

@victordarras
Created June 3, 2016 13:05
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 victordarras/5cd8a6b13dfd7a773f29aab3f40ae9cf to your computer and use it in GitHub Desktop.
Save victordarras/5cd8a6b13dfd7a773f29aab3f40ae9cf to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Github Title tweak
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author victor.darras@gmail.com
// @match https://github.com/
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.title = document.querySelector('.gh-header-number').innerHTML + ' - ' + document.title;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment