// ==UserScript==
// @name Positive Talk
// @namespace Preston
// @version 0.1
// @include http://www.google.com/*
// ==/UserScript==
<script>
name = prompt("Hello, what's your name?",'')
alert(Oh, hi there ' + name + ', I thought that was you...')
prompt('How was your day?','')
alert('Ok, well I hope you have an even better day tomorrow than you did today!')
</script>