Historia wersji dodatku JavaScript-Java Bridge — 2 wersje
JavaScript-Java Bridge Autor: Advanced Machine Controls
Historia wersji dodatku JavaScript-Java Bridge — 2 wersje
Zachowaj ostrożność podczas używania starych wersji! Są one wyświetlane w celach testowych i historycznych.Zawsze powinno używać się najnowszej wersji dodatku.
Najnowsza wersja
Wersja 1.81
Data wydania: 14 paź 2020 — 22,41 KBDziała z: firefox 58.0 i nowszyFor an unknown reason, the Preferences window was not appearing on Version 1.8.Licencja kodu źródłowego: DevWheels V1
Pobierz Firefoksa i to rozszerzeniePotrzebujesz Firefoksa, aby używać tego rozszerzeniaPoprzednie wersje
Wersja 1.8
Data wydania: 15 cze 2020 — 22,32 KBDziała z: firefox 58.0 i nowszyThe 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.Licencja kodu źródłowego: DevWheels V1
- Embed JSON code to remove the external json.jar dependency.