Skip to content

Instantly share code, notes, and snippets.

@krelnik
Created October 13, 2014 18:13
Show Gist options
  • Save krelnik/e8e76073c92091c67619 to your computer and use it in GitHub Desktop.
Save krelnik/e8e76073c92091c67619 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name UnHide picture URLs on Twitter.com
// @namespace http://skeptools.com/
// @version 0.1
// @description Twitter now hides those pic.twitter.com urls that link to photos. But there are uses for those, such as researching photo sources. This unhides them.
// @author Tim Farley
// @match *://twitter.com/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// @grant GM_addStyle
// ==/UserScript==
var userTypeNodes = $(".twitter-timeline-link");
userTypeNodes.removeClass ("u-hidden");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment