Skip to content

Instantly share code, notes, and snippets.

@mait
Forked from JoelBesada/README.md
Last active January 3, 2016 19:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mait/8507807 to your computer and use it in GitHub Desktop.
Save mait/8507807 to your computer and use it in GitHub Desktop.
Blogtrottr for backtick.io

Blogtrottr - Delicious news, fed to your inbox

http://blogtrottr.com

Blogtrottr delivers updates from all of your favourite news, feeds, and blogs directly to your email inbox, giving you the flexibility to stay updated whilst on the go. Yummy!

/* NOTE: Comments need to be in multiline format like this, instead of "// Comment" */
(function(){email=prompt('Please enter your email address'); if(!((email.indexOf('.') > 2) && (email.indexOf('@') > 0))){alert('Email address is invalid'); return;} uri='http://blogtrottr.com'; f=document.createElement('form'); f.method='post'; f.action=uri; i0=document.createElement('input'); i0.type='hidden'; i0.name='btr_email'; i0.value=email; i1=document.createElement('input'); i1.type='hidden'; i1.name='btr_url'; i1.value=location.href; f.appendChild(i0); f.appendChild(i1); b=document.createElement('body'); b.appendChild(f); h=document.getElementsByTagName('html')[0]; h.appendChild(b); f.submit();})()
{
"name": "Blogtrottr",
"description": "Feed to Email",
"icon": "https://blogtrottr.com/images/icons/blogtrottr-32px.png",
"link": "http://blogtrottr.com"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment