Action Directory / Paste to Google Keep

Install

Copies 1Writer text to system clipboard, opens a new note in your Google Keep App. You tap the paste button insert text.

Shared by @MrKamrowski

Script

range=editor.getSelectedLineRange();
text=editor.getTextInRange(range[0],range[1]);
if(text=="") text=editor.getText();
app.setClipboard(text);
app.openURL('comgooglekeep://createnote');