Skip to content

Instantly share code, notes, and snippets.

@mono0x
Created June 26, 2012 14:37
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mono0x/2996154 to your computer and use it in GitHub Desktop.
Save mono0x/2996154 to your computer and use it in GitHub Desktop.
Evernoteのウザいメッセージを消す
// ==UserScript==
// @name Hide cumbersome message from Evernote
// @namespace http://monoweb.info/
// @include https://www.evernote.com/pub/*
// ==/UserScript==
function close() {
var element = document.querySelector('.GCSKHGDCIX');
if(element !== null) {
element.click();
return true;
}
return false;
}
var interval = setInterval(function() {
if(close()) {
clearInterval(interval);
}
}, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment