掘金跳转净化

监听全局点击时间,阻止默认跳转,直接打开链接网页

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         掘金跳转净化
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  监听全局点击时间,阻止默认跳转,直接打开链接网页
// @author       Sage Kwun
// @match        https://juejin.cn/post/*
// @icon         https://www.google.com/s2/favicons?domain=juejin.cn
// @grant        none
// ==/UserScript==

(function () {
  "use strict";

  window.addEventListener(
    "click",
    (e) => {
      if (e.target?.href?.startsWith("https://link.juejin.cn/?target=")) {
        e.preventDefault();
        open(
          decodeURIComponent(
            e.target.href.replace("https://link.juejin.cn/?target=", "")
          )
        );
      }
    },
    true
  );
})();