KDS

KDS utilities

目前为 2015-11-08 提交的版本。查看 最新版本

// ==UserScript==
// @name        KDS
// @description KDS utilities
// @namespace   https://gf.qytechs.cn/users/11909
// @include     http://club.pchome.net/forum*
// @version     2015.11.08.01
// @grant       none
// ==/UserScript==

;(function(window, document) {
  function showImage() {
    var imgs = document.querySelectorAll('.n3>a[rel]');
    var length = imgs.length;
    for (var i = 0; i < length; i++) {
      var img = imgs[i];
      img.parentNode.querySelector('img').onclick = function() {
        window.open(img.rel.replace('_128x128.', '.'));
      };
    }
  }
  showImage();
}(window, document));

QingJ © 2025

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