JavaScript-Java Bridge version history - ٢ versions
JavaScript-Java Bridge Advanced Machine Controls طوّرها
JavaScript-Java Bridge version history - ٢ 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.
احدث إصدار
إصدارة 1.81
صدرت في ١٤ أكتوبر ٢٠٢٠ - ٢٢٫٤١ KBWorks with firefox 58.0 and laterFor an unknown reason, the Preferences window was not appearing on Version 1.8.تم إصدار كود المصدر تحت DevWheels V1
Download Firefox and get the extensionYou'll need Firefox to use this extensionإصدارات أقدم
إصدارة 1.8
صدرت في ١٥ يونيو ٢٠٢٠ - ٢٢٫٣٢ 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.jsjbridgeActive
event when the JSJBridge code has been loaded andgetElementById
calls 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 calleval
on a JavaScript string. Mozilla believes this original feature ofJSObject
to be a security risk. It is still present on the Chrome/Chromium extension.تم إصدار كود المصدر تحت DevWheels V1
- Embed JSON code to remove the external json.jar dependency.