Last active
July 7, 2020 01:33
-
-
Save Dinduks/d215a16d9ba618dd9d73650e9a0d688c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.