Dinesh's Intercepting Ajax

An example Greasemonkey script that intercepts every ajax call.

目前为 2015-10-01 提交的版本。查看 最新版本

// ==UserScript==

// @name          Dinesh's Intercepting Ajax

// @namespace     http://www.webmonkey.com

// @description   An example Greasemonkey script that intercepts every ajax call.

// @include       *

// @version 0.0.1.20151001051228
// ==/UserScript==
unsafeWindow.$('body').ajaxSuccess (
    function (event, requestData)
    {
        alert("Dinesh");
        console.log (requestData.responseText);
    }
);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址