Greasy Fork is available in English.
调整网页布局,方便手动复制。
当前为
// ==UserScript==
// @name 财联社
// @namespace http://tampermonkey.net/
// @version 0.2
// @description 调整网页布局,方便手动复制。
// @author 陈庚
// @match https://www.cls.cn/
// @grant none
// @require http://cdn.bootcss.com/jquery/1.8.3/jquery.min.js
// ==/UserScript==
(function () {
'use strict';
//$("body").remove();
//$("div").remove();
//jsx-2502217557 p-r explain-index-box
//$(".jsx-2502217557&.p-r&.explain-index-box").remove();
$(".jsx-2502217557.p-r.explain-index-box").remove();
$("#listTable").find("div.vip-box-shadow").find("div.tele-right-text").each(function(){
//alert($(this).find("a").attr("href"));
$(this).prepend("<div>财联社</div>");
$(this).append("<div>https://www.cls.cn</div>");
});
})();