JavaScript-Java Bridge의 버전 기록 - 2개 버전
JavaScript-Java Bridge 제작자: Advanced Machine Controls
JavaScript-Java Bridge의 버전 기록 - 2개 버전
이전 버전의 사용에 주의하십시오! 이 버전들은 테스트 및 참조 용도로만 표시되는 것입니다.항상 최신 버전의 부가 기능을 사용해야 합니다.
최신 버전
버전 1.81
2020년 10월 14일에 출시 - 22.41 KBfirefox 58.0 이상에서 작동For an unknown reason, the Preferences window was not appearing on Version 1.8.DevWheels V1에 따라 릴리스된 소스 코드
Firefox를 다운로드하고 확장 기능을 받으세요이 확장 기능을 사용하려면 Firefox가 필요함이전 버전
버전 1.8
2020년 6월 15일에 출시 - 22.32 KBfirefox 58.0 이상에서 작동The 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.