Greasy Fork is available in English.
显示帖子完整链接
当前为
// ==UserScript==
// @name 赚客吧增强
// @namespace 冉冉同学
// @version 0.1
// @description 显示帖子完整链接
// @author 冉冉同学
// @match *://*.zuanke8.com/*
// @grant none
// @require https://cdn.bootcdn.net/ajax/libs/jquery/3.5.1/jquery.min.js
// ==/UserScript==
(function () {
'use strict';
$('.plc .pcb a').each(function () {
console.log($(this).text())
$(this).text($(this).attr('href'))
});
})();