Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rwaldron/1325850 to your computer and use it in GitHub Desktop.
Save rwaldron/1325850 to your computer and use it in GitHub Desktop.
Userscript that enables sensible defaults for jsFiddle.
// ==UserScript==
// @name Sensible defaults for jsFiddle.
// @author Mathias Bynens <http://mathiasbynens.be/>
// @link http://mths.be/bde
// @match http://jsfiddle.net/*
// ==/UserScript==
// Ignore existing fiddles
if (window.location.pathname == '/') {
// Insert JS before </body> and don’t use any libraries by default
[].forEach.call(document.querySelectorAll('#js_wrap option[value="b"], #js_lib option[value="11"]'), function(el) {
el.selected = true;
});
// Don’t use the “normalized” CSS (it’s more like a reset anyway)
document.getElementById('id_normalize_css').checked = false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment