New Userscript

custom keymap overlay for monkeytype

2021-06-21 يوللانغان نەشرى. ئەڭ يېڭى نەشرىنى كۆرۈش.

ئاپتورى
Larry Trotter
باھا نومۇرى
0 0 0
نەشرى
0.1
قۇرۇلغان ۋاقتى
2021-06-21
يېڭىلانغان ۋاقتى
2021-06-21
Size
1.4 KB
ئىجازەتنامىسى
يوق
قوللايدىغىنى

Edit the keymap by swapping keys.
For certain symbols/keys like quotation, where you may be unsure of what you should write it as, just inspect element the key and look at the value of 'id'. The value will be in the form of "KeySomething". You have to input the "Something" in the swap() function.

Confusing swapping:
Let's say you swapped some on the bottom row and now you want to shift all keys to the left of it to the right and have this key go to the extreme right:
Z X C T
You want this to be: T Z X C
The way you go about this is:
swap("T","C");
swap("T","X");

This works because in the second swap keep in mind that C and T have already exchanged positions and now the current layout would be X T C, so obviously you'd want to swap T and X to shift it further to the left end.

Right clicking on the site will swap the keys and right clicking again would revert it(due to the same set of swaps getting executed).