Last active
December 14, 2015 22:59
-
-
Save btleffler/5162117 to your computer and use it in GitHub Desktop.
Feedly Mobile Links be Gone
This file contains 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
/* | |
* Simple script to make feedly's mobile apps links go away | |
* Author: Benjamin Leffler <[email protected]> | |
* Date: 03/14/13 | |
*/ | |
// ==UserScript== | |
// @version 1.0 | |
// @match http://www.feedly.com/* | |
// ==/UserScript== | |
(function () { | |
"use strict"; | |
var interval; | |
interval = setInterval(function () { | |
if (document.readyState === "complete") { | |
clearInterval(interval); | |
document.getElementById("greetings").style.display = "none"; | |
} | |
}, 200); | |
})(); |
This file contains 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== | |
// @version 1.0 | |
// @match http://www.feedly.com/* | |
// ==/UserScript== | |
(function(){"use strict";var e;e=setInterval(function(){if(document.readyState==="complete"){clearInterval(e);document.getElementById("greetings").style.display="none";}},200);})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment