Last active
February 18, 2018 21:16
-
-
Save LW001/9c4df28debd223236a3a29d91713347f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Baum ohne Augen | |
// @version 0.1 | |
// @description Evening all! o/ | |
// @author LW001 | |
// @match https://chat.stackoverflow.com/rooms/111347/sobotics | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var hourOfDay = new Date().getHours(); | |
if (hourOfDay>20) document.getElementById("input").value = "Evening all! o/"; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment