Bookmarklet to toggle http&https

javascript:(function () { 
    if (window.location.protocol=="http:") {location=location.href.replace(/^http:/,"https:");}
    else {location=location.href.replace(/^https:/,"http:");}
 }());

Use bookmarklets to quickly perform common web page tasks