Historial de versiones de JavaScript-Java Bridge - 2 versiones
JavaScript-Java Bridge por Advanced Machine Controls
Historial de versiones de JavaScript-Java Bridge - 2 versiones
¡Ten cuidad con las versiones antiguas! Se suelen mostrar para pruebas y a modo de referencia.Deberías usar siempre la última versión disponible de un complemento.
Última versión
Versión 1.81
Lanzada el 14 de oct. de 2020 - 22,41 KBCompatible con firefox 58.0 y superioresFor an unknown reason, the Preferences window was not appearing on Version 1.8.Se publicó el código fuente bajo la licencia DevWheels V1
Descargar FirefoxNecesitarás Firefox para usar esta extensiónVersiones antiguas
Versión 1.8
Lanzada el 15 de jun. de 2020 - 22,32 KBCompatible con firefox 58.0 y superioresThe 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.Se publicó el código fuente bajo la licencia DevWheels V1
- Embed JSON code to remove the external json.jar dependency.