Skip to content

Instantly share code, notes, and snippets.

@miklb
Last active December 1, 2016 04:50
Show Gist options
  • Save miklb/8536fdb43ed8564689cb to your computer and use it in GitHub Desktop.
Save miklb/8536fdb43ed8564689cb to your computer and use it in GitHub Desktop.
bookmarklet to hide "IFTTT" from a page. (specifically pinboard). Completely cribbed from this [Stack Overflow](https://gist.github.com/miklb/8536fdb43ed8564689cb/edit) solution.
javascript:function htmlreplace(a,b,element){if(!element)element=document.body;var nodes=element.childNodes;for(var n=0;n<nodes.length;n++){if(nodes[n].nodeType==Node.TEXT_NODE){nodes[n].textContent=nodes[n].textContent.replace(new RegExp(a,'gi'),b);}else{htmlreplace(a,b,nodes[n]);}}}htmlreplace('IFTTT','');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment