Global object for Javascript to interact with Safari plug-in - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T15:55:16Z http://stackoverflow.com/feeds/question/1088149 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1088149/global-object-for-javascript-to-interact-with-safari-plug-in 2 Global object for Javascript to interact with Safari plug-in aditya 2009-07-06T17:14:20Z 2009-07-06T17:25:40Z <p>The issue is that I've written a Safari plug-in (<a href="http://tr.im/growler" rel="nofollow">http://tr.im/growler</a>) that allows web applications to send Growl notifications by calling Javascript functions. However, at the moment the way it is written, people need to use <code>&lt;embed&gt;</code> to initialise the plug-in so that Javascript can begin using it (something I picked up from Apple's examples).</p> <p>I was wondering if there was a way I could define something like <code>window.&lt;pluginName&gt;</code> so that they didn't have to embed it everytime? That'll allow a lot of sites to begin using it without changing any code.</p> <p>I've looked at a lot of examples and documentation, and two things came up — 'WebView' and 'WebScriptObject'. I'm pretty new to this, so I'm not really sure what to do.</p> http://stackoverflow.com/questions/1088149/global-object-for-javascript-to-interact-with-safari-plug-in/1088203#1088203 2 Answer by Peter Hosey for Global object for Javascript to interact with Safari plug-in Peter Hosey 2009-07-06T17:25:40Z 2009-07-06T17:25:40Z <p>There's no way to write a WebKit plug-in that doesn't handle a content type. That's why so many Safari “plug-ins” or “extensions” (including GrowlSafari) are implemented as input manager hacks.</p> <p>The way you've done it is the only reliable, safe, supported, and not doomed way to do it.</p>