Hypothesis for Evernote

Adds hypothesis to evernote

2020-12-31 기준 버전입니다. 최신 버전을 확인하세요.

// ==UserScript==
// @name            Hypothesis for Evernote
// @namespace   https://www.evernote.com/
// @version          2
// @author           Blank man
// @description   Adds hypothesis to evernote
// @match           https://evernote.com/*
// @match           https://evernote.com/
// @match           https://evernote.com*
// @match           https://evernote.com
// @match           https://www.evernote.com/*
// @match           https://www.evernote.com/
// @match           https://www.evernote.com*
// @match           https://www.evernote.com
// ==/UserScript==
 
function addJS(jsCode) {
    var s = document.createElement('style');
    s.type = 'text/css';
    s.innerText = jsCode;
    document.getElementsByTagName('head')[0].appendChild(s);
}
var txt = 'body, en-note {background:rgb(255,0,0)!important';
addJS( txt );