diff --git a/src/components/Preferences.vue b/src/components/Preferences.vue index c09d207c..1959aace 100644 --- a/src/components/Preferences.vue +++ b/src/components/Preferences.vue @@ -8,6 +8,7 @@ Instance Name Instance Locations Has CDN? + SSL Score @@ -15,6 +16,11 @@ {{ instance.name }} {{ instance.locations }} {{ instance.cdn }} + + Click Here + @@ -79,6 +85,13 @@ export default { onChange() { if (localStorage) localStorage.setItem("instance", this.selectedInstance); + }, + sslScore(url) { + return ( + "https://www.ssllabs.com/ssltest/analyze.html?d=" + + new URL(url).host + + "&latest" + ); } } };