// ==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 // @downloadURL none // ==/UserScript== $('#content a[href]').each(function () { $this = $(this); var href = this.href; $this.attr('href', 'http://webcache.googleusercontent.com/search?q=cache:' + href); });