Historique de versions de JavaScript-Java Bridge - 2 versions
JavaScript-Java Bridge par Advanced Machine Controls
Historique de versions de JavaScript-Java Bridge - 2 versions
Attention aux anciennes versions ! Elles sont affichées seulement à des fins de test et de référence.Vous devriez toujours utiliser la dernière version d’un module complémentaire.
Dernière version
Version 1.81
Publié le 14 oct. 2020 - 22,41 KoFonctionne avec firefox 58.0 et versions supérieuresFor an unknown reason, the Preferences window was not appearing on Version 1.8.Code source publié sous licence DevWheels V1
Télécharger Firefox et obtenir l’extensionVous avez besoin de Firefox pour utiliser cette extensionAnciennes versions
Version 1.8
Publié le 15 juin 2020 - 22,32 KoFonctionne avec firefox 58.0 et versions supérieuresThe 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.Code source publié sous licence DevWheels V1
- Embed JSON code to remove the external json.jar dependency.