Created
May 15, 2017 16:30
-
-
Save beatcracker/48f308eb92555cd0fb7e185db0facd60 to your computer and use it in GitHub Desktop.
Usercript to unlock search in free Feedly version
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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