Greasy Fork is available in English.

应届生求职网直接跳转

直接跳转网站,不用等待

// ==UserScript==
// @name         应届生求职网直接跳转
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  直接跳转网站,不用等待
// @author       You
// @match        http://www.yingjiesheng.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=yingjiesheng.com
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    var data = document.getElementsByClassName('el')[0].getElementsByTagName('a')[0];
    data.href = data.text;
    // Your code here...
})();