Greasy Fork is available in English.

Hypothesis

Adds hypothesis to evernote

// ==UserScript==
// @name            Hypothesis
// @namespace   https://www.evernote.com/
// @version          5- Inject On All Pages
// @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
// @match        *://*/*
// ==/UserScript==

var head = document.getElementsByTagName('head')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
script.onload = function() {
    callFunctionFromScript();
}
script.src = 'https://hypothes.is/embed.js';
head.appendChild(script);