Bookmarklet:
javascript:(function(a,p){function i(e){e.stopPropagation()};p[a]('keydown',i,!0);p[a]('keypress',i,!0);p[a]('keyup',i,!0);})('addEventListener',$('#wmd-input').parent()[0]);
User Script:
// ==UserScript==
// @name Cya WMD shortcuts
// @namespace Rob W
// @version 1.0
// @match http://superuser.com/*
// @match http://meta.superuser.com/*
// @match http://serverfault.com/*
// @match http://meta.serverfault.com/*
// @match http://askubuntu.com/*
// @match http://meta.askubuntu.com/*
// @match http://*.stackexchange.com/*
// @match http://answers.onstartups.com/*
// @match http://meta.answers.onstartups.com/*
// @match http://stackapps.com/*
// @run-at document-end
// @grant none
// ==/UserScript==
(typeof unsafeWindow !== 'undefined' ? unsafeWindow : window).$(function() {
var p = document.getElementById('wmd-input');
if (!p) return;
p = p.parentNode;
function ignore(e){e.stopPropagation();}
p.addEventListener('keydown', ignore, true);
p.addEventListener('keypress', ignore, true);
p.addEventListener('keyup', ignore, true);
});
Technical details
- In the W3C event model, JavaScript events are fired in two ways:
- Capture (The events are fired, from the top of the document to the target)
- Bubble (The events bubble from the target to the top of the document).
- In
wmd.js, the events are bound using addEventListener, in the bubbling phase.
- The event is added to the parent node of the element, with the capturing flag. Inside the event listener,
event.stopPropagation(); is called, to stop the event from propagating further.
- As a result, all WMD shortcuts are disabled.
Chrome extension
- Create a directory, and store the following two files in it.
- Visit chrome://extensions/
- Enable Developer mode
- Click on the button Load unpacked extension....
- Select the directory from step 1.
manifest.json
{
"name": "Cya WMD shortcuts",
"manifest_version": 2,
"version": "1.0",
"content_scripts": [{
"js": ["contentscript.js"],
"matches": [
"http://stackoverflow.com/*",
"http://meta.stackoverflow.com/*",
"http://superuser.com/*",
"http://meta.superuser.com/*",
"http://serverfault.com/*",
"http://meta.serverfault.com/*",
"http://askubuntu.com/*",
"http://meta.askubuntu.com/*",
"http://*.stackexchange.com/*",
"http://answers.onstartups.com/*",
"http://meta.answers.onstartups.com/*",
"http://stackapps.com/*"
]
}]
}
contentscript.js
var p = document.getElementById('wmd-input');
if (p) {
p = p.parentNode;
var ignore = function(e){e.stopPropagation();};
p.addEventListener('keydown', ignore, true);
p.addEventListener('keypress', ignore, true);
p.addEventListener('keyup', ignore, true);
}
Headingshortcut). – courteous Nov 20 '12 at 10:48