快照链接

把谷歌快照的链接全部转换成谷歌快照

目前为 2015-07-28 提交的版本。查看 最新版本

// ==UserScript==
// @name        快照链接
// @namespace   lovearia.me
// @description 把谷歌快照的链接全部转换成谷歌快照
// @include     http://webcache.googleusercontent.com/search?*q=cache:*
// @version     2
// @grant       none
// @require     http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js
// ==/UserScript==

$('body').on('click', 'a[href]', function (e) {
  if (!$(this).closest('#google-cache-hdr').length) {
    var href = 'http://webcache.googleusercontent.com/search?q=cache:' + escape(this.href);
    location.href = href;
    e.preventDefault();
  }
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址