// ==UserScript== // @name Test Script // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://www.facebook.com/* // @grant none // @grant GM_setValue // @grant GM_getValue // @grant GM_setClipboard // @grant GM_xmlhttpRequest // @grant unsafeWindow // @grant window.close // @grant window.focus // ==/UserScript== setTimeout(function() { var xhr = new XMLHttpRequest(); xhr.open("GET", "https://example.com"); xhr.send(null); }, 6000);