pemol117 / Przypominacz

// ==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);
})();