Skip to content
This repository was archived by the owner on Jun 17, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ app.on("ready", () => {
mb.on("ready", () => {
const { window } = mb;


if (process.platform !== "darwin") {
window.setSkipTaskbar(true);
} else {
Expand Down Expand Up @@ -138,7 +137,19 @@ app.on("ready", () => {
// register cmd+c/cmd+v events
contents.on("before-input-event", (event, input) => {
const { control, meta, key } = input;

if (input.type !== "keyDown" && key == "Enter") {
// if shift is also pressed, ignore
if (input.shift) return;

// press main > form > button
contents.executeJavaScript(
`document.querySelector('main form button').click()`
);
}

if (!control && !meta) return;
if (key === "x") contents.cut();
if (key === "c") contents.copy();
if (key === "v") contents.paste();
if (key === "a") contents.selectAll();
Expand Down