RequestHook

Copy Request Information For fetch and XMLHttpRequest

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         RequestHook
// @namespace    https://greasyfork.org/zh-CN/scripts/414756
// @version      0.3
// @description  Copy Request Information For fetch and XMLHttpRequest
// @author       AutumnSun
// @match        *://*.youtube.com/*
// @grant        GM_setClipboard
// @grant        GM_cookie
// @grant        unsafeWindow
// ==/UserScript==

(function() {
    'use strict';
    // Config Here
    function urlChecker(url){
        return /(heartbeat|send_message)$/.test(url.pathname);
    }
    function handleResponse(method, url, data, args){
        if(urlChecker(url)){
            console.log("Current Status:", data.playabilityStatus.status);
            return;
        }
    }

    function copyCookie(extra={}){
        GM_cookie('list', { url: location.href }, (cookies) => {
            const text = JSON.stringify({extra: extra, cookies: cookies});
            console.log(text);
            GM_setClipboard(text);
        });
    }

    const originRequest = unsafeWindow.fetch;
    unsafeWindow.fetch = (...args) => {
        const url = new URL(args[0].url, location.href);
        if(urlChecker(url)){
           let req = args[0].clone();
           req.json().then((data)=>{
                console.log('Request Captured:', req.method, req.url);
                let headers = {};
                for(let pair of req.headers){
                    headers[pair[0]] = pair[1];
                }
                console.log('Headers', headers);
                console.log('Body');
                console.log(data);
                copyCookie({
                    method: req.method,
                    url: req.url,
                    headers: headers,
                    data: data,
                })
            });
        }
        let resp = originRequest(...args);
        return resp;
    }
    console.log("fetch Injected");
    (function() {
        var origOpen = XMLHttpRequest.prototype.open;
        XMLHttpRequest.prototype.open = function() {
            let args = arguments;
            const method = arguments[0];
            const url = new URL(arguments[1], location.href);
            if(urlChecker(url)){
                console.log('request started!', arguments);
                this.addEventListener('load', function() {
                    console.log('request completed!', this.readyState); //will always be 4 (ajax is completed successfully)
                    if(this.responseType === 'text' || this.responseType === ''){
                        let data = JSON.parse(this.responseText);
                        handleResponse(method, url, data, args);
                    }
                });
            }
            origOpen.apply(this, arguments);
        };
        console.log("XMLHttpRequest Injected");
    })();
})();