Skip to content

Instantly share code, notes, and snippets.

@ozgurg
Created September 27, 2022 20:49
Show Gist options
  • Save ozgurg/817e08902b6f62de9461cd8f36f922a3 to your computer and use it in GitHub Desktop.
Save ozgurg/817e08902b6f62de9461cd8f36f922a3 to your computer and use it in GitHub Desktop.
(() => {
"use strict";
let files = null;
window.addEventListener("paste", (event) => {
files = event.clipboardData.files;
document.querySelector('[aria-label="Search by image"]').click();
setTimeout(() => {
const fileInput = document.querySelector("body > form:nth-child(13) > input[type=file]");
fileInput.files = files;
fileInput.dispatchEvent(new Event("change"));
}, 1000);
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment