Skip to content

Instantly share code, notes, and snippets.

@thomasgustavo
Created September 23, 2016 18:57
Show Gist options
  • Save thomasgustavo/6d328f312e9d2de8b86ff96143163bba to your computer and use it in GitHub Desktop.
Save thomasgustavo/6d328f312e9d2de8b86ff96143163bba to your computer and use it in GitHub Desktop.
/*
Requires Custom Javascript extension on Chrome
https://chrome.google.com/webstore/detail/custom-javascript-for-web/poakhlngfciodnhlhhgnaaelnpjljija
It makes the Clear button always visible, example: http://pichoster.net/images/2016/09/23/Tweetdeck.png
*/
setTimeout(function(){
$('a.js-action-header-button.column-header-link.column-settings-link').click();
setTimeout(function(){
$('fieldset.js-search-filter').css('display', 'none');
$('.btn.btn-neutral-positive.full-width.btn-bg-positive.btn-options-tray-space').css('display', 'none');
$('fieldset.js-thumb-size').css('display', 'none');
$('div.js-column-options').css('height', '38px');
$('div.js-column-scroller.js-dropdown-container.column-scroller.scroll-v.scroll-styled-v').css('top', '0px');
}, 500);
}, 10000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment