Demo of Growl Tools

By PhasmaExMachina Last update Sep 24, 2009 — Installed 61 times. Daily Installs: 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 2, 0, 2, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0
Script Summary:
A demonstration of the script at http://userscripts.org/scripts/show/58203

This script has no discussions.

start the discussion

This script has no reviews.

Thumb Thumb

 

This script is a demonstration of the Growl tool for Windows script in action.

Requirements

In order to see Growl notices using this method, you will need to have installed the following:

  1. Firefox
  2. Greasemonkey add-on for Firefox
  3. Growl/GNTP add-on for Firefox
  4. Growl for Windows (direct download) or a development build of Growl for OSX

Setup: (you only have to do this once)

  1. Install Growl for Windows (direct download) or a development build of Growl for OSX
  2. Start Growl. You may want to open Growl once it starts and turn on auto start.
  3. Install Growl/GNTP add-on for Firefox
  4. Restart Firefox
  5. Go to the Ikariam Options page and scroll down to the Ikariam Notifier section
  6. Click on "test" next to the Growl section and you should see a test notification pop up.
  7. Customize the notification settings under "Applications" and "Displays" in Growl if desired

Source

// ==UserScript==
// @name           GrowlDemo of tools for Windows
// @namespace      PhasmaExMachina
// @author         PhasmaExMachina
// @description    A demonstration of the script at http://userscripts.org/scripts/show/58203
// @include        *
//
// @require http://userscripts.org/scripts/source/58203.user.js
//
// ==/UserScript==

Growler.addNoticeType('greeting', 'Greeting from Hal');
Growler.addNoticeType('question', 'Question from Hal');
Growler.register('HAL 9000 Script', 'http://i763.photobucket.com/albums/xx278/PhasmaExMachina/icons/hal_icon.png');
Growler.growl('greeting', 'Hal 9000', 'Hello Dave.');
setTimeout(function() {
    Growler.growl('question', 'Hal 9000', 'What are you doing Dave?');
}, 2000);