Skip to content

ToDesktop/electron-selected-text-prebuild

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Electron Selected Text

Get selected text from any application using Electron's clipboard and robotjs

For Electron 9 and later, this module should only be used in the main process because robotjs is not context aware

Install

$ npm install electron-selected-text

Usage

import { app } from "electron";
import { getSelectedText, registerShortcut } from "electron-selected-text";

const printSelectedText = (selectedText) => {
  console.log(`Selected Text: ${selectedText}`);
};

getSelectedText().then(printSelectedText);

app.whenReady().then(() => {
  const ret = registerShortcut("F6", printSelectedText);

  if (!ret) {
    console.warn("registration failed");
  }
});

About

Get selected text from any application

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 100.0%