Last active
August 29, 2015 14:01
-
-
Save ssig33/fbaab3d4fac677fcc50e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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