Skip to content

Instantly share code, notes, and snippets.

@bryanmenard
Created March 17, 2013 19:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bryanmenard/5183354 to your computer and use it in GitHub Desktop.
Save bryanmenard/5183354 to your computer and use it in GitHub Desktop.
My Personal Feedly Userscript
// ==UserScript==
// @name My Personal Feedly
// @namespace http://bryblog.com/userscripts
// @version 1.0
// @description My Personal Feedly
// @match http://www.feedly.com/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js
// @author Bryan Ménard
// ==/UserScript==
(function ($) {
var applyChanges = function () {
// Black links
$('.tab').css({ color: '#000' });
// Hide date headers of compact stream
$('#timeline .label h2').hide();
};
$(document).ready(applyChanges);
for (var i = 500; i < 5000; i += 500) {
setTimeout(applyChanges, i);
}
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment