One click Qualys SSL Labs test
Ever wanted to do an SSL test on a website you’re browsing? Tired of putting the URL into SSL Labs manually or copy and pasting?
Worry no more! Just drag the bookmarklet below to your bookmark bar and hit it! All done through the magic of JavaScript, checkout the code below.
javascript: var current_host = window.location.host;
(function() {
window.open("https://www.ssllabs.com/ssltest/analyze.html?d=" + current_host + "&hideResults=on");
})()