Greasy Fork is available in English.
把谷歌快照的链接全部转换成谷歌快照
当前为
// ==UserScript==
// @name 快照链接
// @namespace lovearia.me
// @description 把谷歌快照的链接全部转换成谷歌快照
// @include http://webcache.googleusercontent.com/search?*q=cache:*
// @version 1
// @grant none
// @require http://libs.baidu.com/jquery/1.9.0/jquery.js
// ==/UserScript==
$('#content a[href]').each(function () {
$this = $(this);
var href = this.href;
$this.attr('href', 'http://webcache.googleusercontent.com/search?q=cache:' + href);
});