Skip to content

Instantly share code, notes, and snippets.

@amontalenti
Created August 26, 2012 18:00
Show Gist options
  • Save amontalenti/3482129 to your computer and use it in GitHub Desktop.
Save amontalenti/3482129 to your computer and use it in GitHub Desktop.
NewsBlur bookmarklet that adds domain of current article to NewsBlur
javascript:(function() { var u = location.href, a = document.createElement('a'); a.href = u; location.href = "http://www.newsblur.com/?url=" + encodeURIComponent(a.hostname); }())
@amontalenti
Copy link
Author

Wrote this because the NewsBlur Share bookmarklet is a bit too heavyweight for me. I am not actively using NewsBlur sharing features just yet, but I am regularly adding sites to my list of regular reads.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment