Skip to content

Instantly share code, notes, and snippets.

@swdyh
Created November 7, 2008 12:51
Show Gist options
  • Save swdyh/22851 to your computer and use it in GitHub Desktop.
Save swdyh/22851 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name kill typeface-js
// @namespace http://www.relucks.org/
// @include http://*
// @include https://*
// ==/UserScript==
Array.forEach(document.getElementsByClassName('typeface-js'),
function(i) {
i.innerHTML = Array.map(i.firstChild.childNodes, function(j) {
return j.innerHTML
}).join(' ')
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment