Skip to content

Instantly share code, notes, and snippets.

@ssig33
Last active August 29, 2015 14:01
Show Gist options
  • Save ssig33/fbaab3d4fac677fcc50e to your computer and use it in GitHub Desktop.
Save ssig33/fbaab3d4fac677fcc50e to your computer and use it in GitHub Desktop.
#page-container > div.AppContainer > div > div > div.Grid-cell.u-size3of4 > div > div.Grid-cell.u-size1of3{
display:none;
}
#page-container > div.AppContainer > div > div > div.Grid-cell.u-size3of4 > div > div.Grid-cell.u-size2of3{
width:100% !important;
}
// ==UserScript==
// @name Twitter auto with replies
// @namespace http://use.i.E.your.homepage/
// @version 0.1
// @description enter something useful
// @match https://twitter.com/*
// @copyright 2012+, You
// ==/UserScript==
f = function(){
setTimeout(function(){
$a = $("a.StreamToggler-link:not(.is-active)")
if($a.text().match(/replies/)){ $a.click() }
f()
},200)
}
f()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment