// ==UserScript==
// @name 新浪微博内容批量提取
// @namespace 80f8bbae-1e20-4b0e-96a1-db12071b6264
// @version 1.0
// @description 批量提取新浪微博内容
// @author shenglin-feng
// @match https://weibo.com/*
// @require https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.slim.min.js
// @grant none
// @downloadURL none
// ==/UserScript==
(function() {
'use strict';
$("body").append("");
$("#btn").click(function() {
var str = "";
$(".WB_detail").each(function() {
str += $(this).find(".WB_from .S_txt2:first").text().trim() + "
";
str += $(this).find(".WB_text").text().trim() + "
";
});
window.open().document.write(str);
});
})();