Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/uasi/growl-safari-bridge
- Owner: uasi
- License: zlib
- Created: 2010-10-04T06:27:09.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2011-04-18T04:32:54.000Z (over 13 years ago)
- Last Synced: 2023-04-14T01:30:59.772Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 1.3 MB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'})
}