0%

Google Groups Via Https

  早上起来发现Google Groups 又不能正常访问了(可恶的 G’F’W)。

  还好Google Groups有提供Https链接,把网址链接的Http换成Https即可。不过像我等懒人怎么能忍受做这种挫事。

  随便写一句Greasemonkey的脚本搞定。话说Greasemonkey真是好用,HoHo。

  附代码:

1
2
3
4
5
6
7
// ==UserScript==
// @name GoogleGroups Secure
// @description 强制使用Https 访问Google Groups
// @namespace http://example.com/projects/
// @include http://groups.google.com/\*
// ==/UserScript==
window.location.href = window.location.href.replace(/^http:/, 'https:');