其實Google的Services(e.g. gmail; calendar; docs; spreadsheets)都有支援https,但目前只有gmail可在帳戶中設定,所以就用這個啦,強制其使用https,確保資料的安全性。
需先安裝GreaseMonkey,Firefox、Google Chrome、Opera、IE都有。
按google_services_https安裝(Install)。
程式碼如下:
// ==UserScript==
// @name Google services https
// @namespace wangaguo
// @include http://mail.google.com/*
// @include http://spreadsheets.google.com/*
// @include http://docs.google.com/*
// @include http://www.google.com/calendar/*
// ==/UserScript==
if(location.href.match(/^http:/i)) location.href = location.href.replace(/^http:/i, "https:");