NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Przypominacz
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match http://torg.pl/*
// @grant none
// ==/UserScript==
(function() {
function tick() {
var mins = new Date().getMinutes();
var sec = new Date().getSeconds();
if(mins == "00" && sec == "00"){
alert('PAMIĘTAJ O WODZIE GRUBY CHUJU');
}
console.log('Tick ' + mins);
}
setInterval(function() { tick(); }, 1000);
})();