Skip to content

Instantly share code, notes, and snippets.

@flavioamieiro
Created August 27, 2014 19:56
Show Gist options
  • Save flavioamieiro/d734fea840f6e3e56b55 to your computer and use it in GitHub Desktop.
Save flavioamieiro/d734fea840f6e3e56b55 to your computer and use it in GitHub Desktop.
Shows only feeds with unread items in netvibes' sidebar
window.setInterval( function() {
Array.prototype.slice.call(document.getElementsByClassName('nv-treeview-feed'), 0).map(
function (el, idx, arr) {
// if you're running on chromium you may need to use innerText
if (el.children[0].children[2].innerHTML == 0) {
el.hidden = true;
} else {
el.hidden = false;
}
}
)}, 2000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment