Skip to content

Instantly share code, notes, and snippets.

@chriseskow
Forked from micbase/feedly.user.js
Last active August 29, 2015 14:23
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 chriseskow/12c8d313333fa5300fb9 to your computer and use it in GitHub Desktop.
Save chriseskow/12c8d313333fa5300fb9 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Feedly Tweak - Open feed item in background by pressing 'i'
// @namespace http://micbase.com/feedly-tweak-open-item-background-tab-firefox
// @description Feedly Tweak - Open feed item in background by pressing 'i'
// @include http*://feedly.com/*
// @grant GM_openInTab
// ==/UserScript==
var x;
var link;
document.addEventListener('keypress', function(event) {
//if user press 'i' key, then open links in new tab in background
if (event.which == 105) {
x = document.getElementsByClassName('selectedEntry');
//if no feed item selected, exit
if (x == null){
return;
}
link = x[0].getAttribute('data-alternate-link');
event.stopPropagation();
event.preventDefault();
GM_openInTab(link, true);
}
}, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment