Skip to content

Instantly share code, notes, and snippets.

@ttscoff
ttscoff / Bullseye.bookmarklet
Last active February 20, 2025 09:55
A bookmarklet for grabbing just a piece of a web page and converting it to Markdown using heckyesmarkdown.com.
javascript:(function(){var p=document.createElement("p");p.innerHTML="<strong>Loading&hellip;</strong>";p.id="loadingp";p.style.padding="20px";p.style.background="#fff";p.style.left="20px";p.style.top=0;p.style.position="fixed";p.style.zIndex="9999999";p.style.opacity=".85";document.body.appendChild(p);document.body.appendChild(document.createElement("script")).src="https://cdn.rawgit.com/ttscoff/6109434/raw/Bullseye.js?x="+(Math.random());})();
@loopymonkey
loopymonkey / emailBookmarklet.js
Created October 7, 2010 20:03
Javascript bookmarklet to send email of current url
javascript:window.open('http://compose.mail.yahoo.com?subject=FWD: '+encodeURIComponent(escape(document.title))+'&BODY='+encodeURIComponent(escape(document.title))+' \n '+encodeURIComponent(window.location.href),'newEmailYahoo','status=no,directories=no,location=no,resizable=yes,menubar=no,width=800,height=600,toolbar=no');