網頁

2010年4月30日 星期五

[GreaseMonkey] google services uging https (強制Google服務使用https)

其實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:");

沒有留言: