Lịch sử phiên bản JavaScript-Java Bridge - 2 phiên bản
JavaScript-Java Bridge bởi Advanced Machine Controls
Lịch sử phiên bản JavaScript-Java Bridge - 2 phiên bản
Hãy cẩn thận với các phiên bản cũ! Các phiên bản này được hiển thị cho mục đích thử nghiệm và tham khảo.Bạn luôn luôn phải sử dụng phiên bản mới nhất của một tiện ích.
Phiên bản mới nhất
Phiên bản 1.81
Đã phát hành 14 Thg 10 2020 - 22,41 KBHoạt động với firefox 58.0 và lớn hơnFor an unknown reason, the Preferences window was not appearing on Version 1.8.Mã nguồn được phát hành dưới dạng DevWheels V1
Tải xuống Firefox và tải tiện ích mở rộngBạn sẽ cần Firefox để sử dụng tiện ích mở rộng nàyPhiên bản cũ hơn
Phiên bản 1.8
Đã phát hành 15 Thg 06 2020 - 22,32 KBHoạt động với firefox 58.0 và lớn hơnThe 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.Mã nguồn được phát hành dưới dạng DevWheels V1
- Embed JSON code to remove the external json.jar dependency.