How to use Human typing emulation in Multilogin
Who can use this feature?
- 👨💻 Account owner and all team members
- 💰 Available on all plans
When managing multiple online accounts, you often need to enter usernames, passwords, and other details quickly. However, some websites track whether you type manually or paste the data – especially during sign-ups, like Gmail registration.
To help you save time while avoiding detection, Multilogin offers the Paste as human feature. This makes pasted text appear as if it’s being typed naturally.
Why use this feature
- Saves time: no need to manually type out credentials
- Reduces detection: websites see the input as natural typing
- Easy to use: works with a simple right-click or shortcut
How human typing works
To mimic real human typing, Paste as human adds:
- Typing delay: a random 100-200ms delay between key presses (+100ms extra) by default. You can tweak it to 0ms (instant paste) or longer if needed
- Typos & corrections: a small error rate (3%-12%) that makes mistakes appear (like a real human), then quickly corrects them with backspace
How to use human typing
There are two easy ways to use this feature.
Right-click method:
- Right-click on the field where you need to enter text
- Select “Paste as human”
Shortcut method:
- Click inside the input field where you want to paste
-
Press
Ctrl + Shift + H
on the keyboard (all operating systems)

How to modify human typing settings
Multilogin X
Set values at the profile level using cmd_params
with our API:
Mimic
"cmd_params": {
"params": [
{ "flag": "paste-as-human-type-speed", "value": "200" },
{ "flag": "paste-as-human-error-rate", "value": "0.8" }
]
}
Stealthfox
"cmd_params": {
"params": [
{ "flag": "browser.pasteAsHuman.typeDelay", "value": "200" },
{ "flag": "browser.pasteAsHuman.errorRate", "value": "0.8" }
]
}
Multilogin 6
Modify settings in the app.properties file:
Mimic
-
Type delay:
chrome.console_arg.paste-as-human-type-speed = 0
(max speed) -
Error rate:
chrome.console_arg.paste-as-human-error-rate = 0
(no errors)
Stealthfox
-
Type delay:
firefox.config.browser.pasteAsHuman.typeDelay
-
Error rate:
firefox.config.browser.pasteAsHuman.errorRate
You can also edit these in about:config
manually via the browser UI!