Auto Paste from windows Clipboard

883 views
Skip to first unread message

Mo Sa

unread,
Jun 24, 2022, 4:55:06 AM6/24/22
to Autofill Extension
HI 
Is it possible to paste the last text that i have copied to clipboard to one form?
I mean i can pre define the text but i want the extension to do this from clipboard.
and if not which app helps me to paste from clipboard in web pages?
Thanks

turbowells

unread,
Jun 27, 2022, 7:04:30 AM6/27/22
to Autofill Extension
You can try this javascript rule:

setTimeout(async function GetClip() {
let ctext = await window.navigator.clipboard.readText()
  console.log('Clipboard: ' + ctext);
  document.getElementsByName("Lastname")[0].value = ctext;
}, 1000)

You'll need to change the last line to match your input field name.

It also depends on the settings of your browser clipboard access setting.  I was able to get the above to work on Chrome.
Reply all
Reply to author
Forward
0 new messages