360搜索真实链接地址重定向

搜索结果链接修正,直接跳转至目标网址,而不经过中间的二次跳转页面

  1. // ==UserScript==
  2. // @name Link Redirect Fix for 360so
  3. // @name:zh-CN 360搜索真实链接地址重定向
  4. // @name:zh-TW 360搜索真實鏈接地址重定向
  5. // @description Avoid link redirect for 360 search
  6. // @description:zh-CN 搜索结果链接修正,直接跳转至目标网址,而不经过中间的二次跳转页面
  7. // @description:zh-TW 搜索結果鏈接修正,直接跳轉至目標網址,而不經過中間的二次跳轉頁面
  8.  
  9. // @author Moshel
  10. // @namespace https://hzy.pw
  11. // @homepageURL https://hzy.pw/p/2056
  12. // @supportURL https://github.com/h2y/link-fix
  13. // @license GPL-3.0
  14. // @icon https://p.ssl.qhimg.com/t011a6c04685b5d3b80.png
  15.  
  16. // @grant none
  17. // @run-at document-end
  18. // @include https://www.so.com/s?*
  19.  
  20. // @date 06/09/2016
  21. // @modified 08/07/2016
  22. // @version 1.0.1.1
  23. // ==/UserScript==
  24.  
  25.  
  26. !function() {
  27.  
  28. var dom = null;
  29. function ajax_fixer() {
  30. var new_dom = document.querySelector('#m-result');
  31. if (new_dom && new_dom !== dom) {
  32. dom = new_dom;
  33. main();
  34. }
  35. setTimeout(ajax_fixer, 2222);
  36. }
  37. ajax_fixer();
  38.  
  39.  
  40. function main() {
  41. var num = 0,
  42. as = dom.querySelectorAll('a');
  43. for(var i=0; i<as.length; i++) {
  44. var old = as[i].href.match(/url=(.+?)(&|$)/);
  45. if(old && old.length>=2) {
  46. as[i].href = decodeURIComponent(old[1]);
  47. num++;
  48. }
  49. }
  50. if(num)
  51. console.log(num+' 条链接已重定向至真实地址');
  52. }
  53.  
  54. }();

QingJ © 2025

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