Skip to content

Instantly share code, notes, and snippets.

@noahm
Created October 3, 2013 16:15
Show Gist options
  • Save noahm/6812514 to your computer and use it in GitHub Desktop.
Save noahm/6812514 to your computer and use it in GitHub Desktop.
Userscript to disable keyboard shortcuts for GWJ's quick reply editor
// ==UserScript==
// @name Disable GWJ editor keyboard shortcuts
// @description Avoids frustration while composing a post
// @author Noah Manneschmidt
// @namespace gamerswithjobs
// @include http://www.gamerswithjobs.com/*
// @version 1
// @grant none
// ==/UserScript==
document.onkeydown = function(){};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment