| Yes, I think you've captured the difference: An "extension" is written in an extension language like JavaScript, in a browser that's intended to be extended in that language. A "plugin" is a more independent piece of code written in a compiled language, plugged into a host that doesn't necessarily have its own extension language like JavaScript or Visual Basic. But I think that may be largely an after-the-fact rationalization (like retronyming "YAML" from "Yet Another Markup Language" to "YAML Ain't Markup Language") and it's mainly a historical artifact that two different generations of browser extension technology have different names, because they're not precisely mathematically defined categories of computer science. At the time that NSAPI came around, JavaScript wasn't really much of a thing, and DHTML didn't exist, so not many people would have seriously thought of actually writing practical browser extensions in it. JavaScript was first thought of more as a way to wire together plugins, not implement them. You were supposed to use Java for that. To that end, Netscape developed LiveConnect. Microsoft eventually came out with "ActiveX Behavior Components" aka "Dynamic HTML (DHTML) Behaviors" aka "HTML Components (HTCs)" that enabled you to implement ActiveX controls with COM interfaces in all their glory and splendor, entirely in Visual Basic Script, JavsScript, or any other language supporting the "IScriptingEngine" plug-in interface, plus some XML. So you could plug in any scripting language engine, then write plug-ins in that language! (Easier said than done, though: it involved tons of OLE/COM plumbing and dynamic data type wrangling. But there were scripting engines for many popular scripting languages, like Python.) https://en.wikipedia.org/wiki/HTML_Components https://docs.microsoft.com/en-us/previous-versions//ms531018... http://lua-users.org/lists/lua-l/2007-03/msg00047.html LiveConnect: https://techmonitor.ai/techonology/netscape_ships_liveconnec... NETSCAPE SHIPS LIVECONNECT BETA. By CBR Staff Writer 30 May 1996. >Netscape Communications Corp, Mountain View, California, this week released its LiveConnect SDK development kit in beta which enables live objects in Web pages – such as Java applets, JavaScript scripts and plug-ins – to communicate with each other. Netscape will deliver a pre-release version of Java user interface component and application programming interfaces acquired through its acquisition of Netcode Corp earlier this year. Netscape will release a beta version of its Java-enabled Navigator 3.0 client for Windows 3.1 in June. http://medialab.di.unipi.it/web/doc/JavaScriptGuide/livecon.... Chapter 5. LiveConnect LiveConnect enables communication between JavaScript and Java applets in a page and between JavaScript and plug-ins loaded on a page. This chapter explains how to use LiveConnect in Netscape Navigator. It assumes you are familiar with Java programming. Use JavaScript to access Java variables, methods, classes, and packages directly. Control Java applets or plug-ins with JavaScript. Use Java code to access JavaScript methods and properties. For reference material on the Netscape packages, see the JavaScript Reference. For the HTML syntax required to add applets and plug-ins to your web page, see the Applet and Plugin objects in the JavaScript Reference. For information on using LiveConnect with server-side JavaScript, see Writing Server-Side JavaScript Applications. For additional information on using LiveConnect, see the JavaScript technical notes. |
I really don't see how "compiled" versus "script" makes a difference. The are both independent pieces of code written to interact with an API to add functionality.
Extension, add-in, add-on, plug-in are all words describing the same thing.