Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/uasi/growl-safari-bridge

GrowlSafariBridge enables arbitrary javascript (including Safari Extensions) to notify via Growl.
https://github.com/uasi/growl-safari-bridge

Last synced: about 7 hours ago
JSON representation

GrowlSafariBridge enables arbitrary javascript (including Safari Extensions) to notify via Growl.

Awesome Lists containing this project

README

        

GrowlSafariBridge
=================

GrowlSafariBridge enables arbitrary javascript (including Safari Extensions) to notify via Growl.

INSTALL
-------

Download GrowlSafariBridge.webplugin from
and copy it to ~/Library/Internet Plug-Ins/.

USAGE
-----

// Load GrowlSafariBridge plug-in
document.write('');

// Get the element
window.GrowlSafariBridge = document.getElementById('growl-safari-bridge');

// Check if the plug-in is available
if (GrowlSafariBridge.notify !== undefined) {
// Notify
GrowlSafariBridge.notify('Title', 'Description');
GrowlSafariBridge.notify('Title only', undefined, {isSticky: 1, priority: 1, imageUrl: 'http://www.example.com/example.jpg'})
}