JavaScript-Java Bridge version history - 3 versions
JavaScript-Java Bridge by Advanced Machine Controls
JavaScript-Java Bridge version history - 3 versions
Be careful with old versions! These versions are displayed for testing and reference purposes.You should always use the latest version of an add-on.
Latest version
Version 1.82
Released Mar 18, 2026 - 22.48 KBWorks with firefox 58.0 and laterAdd support for CSSStyleProperties, so it works on Firefox versions from 144.Source code released under DevWheels V1
Older versions
Version 1.81
Released Oct 14, 2020 - 22.41 KBWorks with firefox 58.0 and laterFor an unknown reason, the Preferences window was not appearing on Version 1.8.Source code released under DevWheels V1
Version 1.8
Released Jun 15, 2020 - 22.32 KBWorks with firefox 58.0 and laterThe jsjbridge.jar Version 1.8 Java library:
- Embed JSON code to remove the external json.jar dependency.
- Retry waits for request replies when the thread is interrupted.
Trigger a JavaScriptwindow.jsjbridgeActiveevent when the JSJBridge code has been loaded andgetElementByIdcalls return a Java proxy rather than a normal HTML element.
Code can now be like
addEventListener('jsjbridgeActive', function() {
var myHelper = document.getElementById('myApplet');
myHelper.addEventListener('initialized', function() { ... });
});
instead of
var myHelper = document.getElementById('myApplet');
myHelper.addEventListener('initialized', function() {
myHelper = document.getElementById('myApplet');
...
});
Disable the ability of Java to callevalon a JavaScript string. Mozilla believes this original feature ofJSObjectto be a security risk. It is still present on the Chrome/Chromium extension.Source code released under DevWheels V1
- Embed JSON code to remove the external json.jar dependency.