爱发电直接跳转测试

爱发电直接跳转

  1. // ==UserScript==
  2. // @name 爱发电直接跳转测试
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description 爱发电直接跳转
  6. // @author zyb
  7. // @match https://afdian.net/link?target=*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=afdian.net
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. // Your code here...
  17. // let pDom = document.querySelectorAll('.black-5')[0] || {};
  18. // let urlStr = pDom.innerText;
  19. let urlStr = decodeURIComponent(window.location.href.split('target=')[1]);
  20. window.location.href = urlStr;
  21. })();

QingJ © 2025

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