Skip to content

Instantly share code, notes, and snippets.

@beatcracker
Created May 15, 2017 16:30
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 beatcracker/48f308eb92555cd0fb7e185db0facd60 to your computer and use it in GitHub Desktop.
Save beatcracker/48f308eb92555cd0fb7e185db0facd60 to your computer and use it in GitHub Desktop.
Usercript to unlock search in free Feedly version
// ==UserScript==
// @name Feedly: Unlock Search
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Unlock search in free Feedly version. Returns top 3 results.
// @author beatcracker
// @match http*://feedly.com/i/*
// @grant GM_addStyle
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js
// ==/UserScript==
(function() {
'use strict';
// http://stackoverflow.com/a/12899331/4424236
waitForKeyElements ("div.is-inline.modal-overlay", removeFeedlyPromo);
function removeFeedlyPromo (node) {
node.remove();
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment