Skip to content

Instantly share code, notes, and snippets.

@Dinduks
Last active July 7, 2020 01:33
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 Dinduks/d215a16d9ba618dd9d73650e9a0d688c to your computer and use it in GitHub Desktop.
Save Dinduks/d215a16d9ba618dd9d73650e9a0d688c to your computer and use it in GitHub Desktop.
javascript:(function(){function hypefuryURL(url,title){baseUrl="https://app.hypefury.com/queue";return[baseUrl,"?content=",encodeURIComponent(title)+" "+encodeURIComponent(url)].join("")}location.href=hypefuryURL(window.location.href,document.title)})();
// Heavily inspired by: https://gist.github.com/davidjbeveridge/53a4b3593e900df79806
(function() {
function hypefuryURL(url, title) {
baseUrl = "https://app.hypefury.com/queue";
return [baseUrl,
"?content=",
encodeURIComponent(title) + ' ' + encodeURIComponent(url)
].join('');
}
location.href = hypefuryURL(window.location.href, document.title);
})();
@joebloom
Copy link

joebloom commented Jul 7, 2020

Gave it a try, doesn't seem to work for me in Firefox. Takes me to Hypefury, and opens Composer, but nothing gets added in there.

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