link fix for "Cockpit for Pixiv 5.0.0-beta.3"

try to take over the world!

  1. // ==UserScript==
  2. // @name link fix for "Cockpit for Pixiv 5.0.0-beta.3"
  3. // @namespace https://gf.qytechs.cn/ja/users/166153-hac
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author HAC
  7. // @match https://www.pixiv.net/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. Array.from(document.querySelectorAll('a[href^="member_illust.php?mode=medium&illust_id="]'))
  14. .forEach(a => a.setAttribute('href', (a.getAttribute('href')).replace(/member_illust\.php\?mode=medium&illust_id=(.+?)/, "/artworks/$1")));
  15. })();

QingJ © 2025

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