Greasy Fork is available in English.

嗖哈盘直接跳转

嗖哈盘链接直接跳转

// ==UserScript==
// @name         嗖哈盘直接跳转
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  嗖哈盘链接直接跳转
// @author       Androidcn
// @license      GPL-3.0 License
// @match        https://www.sohapan.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=sohapan.com
// @grant        none
// @require     http://code.jquery.com/jquery-latest.js

// ==/UserScript==



(function() {
    'use strict';
     var $ = window.$;

    $("a[href]")
   .each(function()
   {
      this.href = this.href.replace("https://www.sohapan.com/?target=","");
   });
})();