Skip to content

Instantly share code, notes, and snippets.

@LW001
Last active February 18, 2018 21:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LW001/9c4df28debd223236a3a29d91713347f to your computer and use it in GitHub Desktop.
Save LW001/9c4df28debd223236a3a29d91713347f to your computer and use it in GitHub Desktop.
// ==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