Paste to Google Keep
Shared by @MrKamrowski
Copies 1Writer text to system clipboard, opens a new note in your Google Keep App. You tap the paste button insert text.
Script
range=editor.getSelectedLineRange();
text=editor.getTextInRange(range[0],range[1]);
if(text=="") text=editor.getText();
app.setClipboard(text);
app.openURL('comgooglekeep://createnote');