Skip to content

Instantly share code, notes, and snippets.

View shudal's full-sized avatar
🌴
Interrupting

shudal

🌴
Interrupting
View GitHub Profile
@shudal
shudal / simulate_keypress.js
Created April 29, 2020 01:56 — forked from ejoubaud/simulate_keypress.js
Simulate keypress that works in Google nav in Chrome
// Based on http://stackoverflow.com/a/10520017/1307721 and http://stackoverflow.com/a/16022728/1307721
Podium = {};
Podium.keydown = function(k) {
var oEvent = document.createEvent('KeyboardEvent');
// Chromium Hack
Object.defineProperty(oEvent, 'keyCode', {
get : function() {