Skip to content

Instantly share code, notes, and snippets.

@tkiapril
Created April 1, 2015 08:11
Show Gist options
  • Save tkiapril/0107e201447b005d1643 to your computer and use it in GitHub Desktop.
Save tkiapril/0107e201447b005d1643 to your computer and use it in GitHub Desktop.
Imgur click username goto images
// ==UserScript==
// @name imgur click username goto images
// @namespace tkism.org
// @include http://imgur.com/
// @include http://*.imgur.com/
// @include https://imgur.com/
// @include https://*.imgur.com/
// @version 1
// @grant none
// ==/UserScript==
user = document.getElementsByClassName('account-user-name')[0]
user.href = 'https://' + user.innerHTML.trim() + '.imgur.com/all/'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment