// ==UserScript==
// @name Close window after X seconds
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://yoursite.com/*
// @grant window.close
// ==/UserScript==
(function() {
'use strict';
setTimeout (window.close, 5000);
})();
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)