新浪微博内容批量提取

批量提取新浪微博内容

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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/[email protected]/dist/jquery.slim.min.js
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    $("body").append("<button id='btn' style='position:fixed;left:5px;top:200px;z-index:999999'>提取</button>");

    $("#btn").click(function() {
		var str = "";
		$(".WB_detail").each(function() {
			str += $(this).find(".WB_from .S_txt2:first").text().trim() + "<br>";
            str += $(this).find(".WB_text").text().trim() + "<br>";
		});
        window.open().document.write(str);
    });

})();