Global object for Javascript to interact with Safari plug-in - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T15:55:16Zhttp://stackoverflow.com/feeds/question/1088149http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1088149/global-object-for-javascript-to-interact-with-safari-plug-in2Global object for Javascript to interact with Safari plug-inaditya2009-07-06T17:14:20Z2009-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><embed></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.<pluginName></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#10882032Answer by Peter Hosey for Global object for Javascript to interact with Safari plug-inPeter Hosey2009-07-06T17:25:40Z2009-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>