JavaScript-Java Bridge

A replacement for the Java Plugin, so Java Applets that use LiveConnect but have no graphics continue to work.

Wat is JavaScript-Java Bridge?

JavaScript-Java Bridge is een Chrome-extensie ontwikkeld door https://advancedcontrols.com.au, en de belangrijkste functie is "A replacement for the Java Plugin, so Java Applets that use LiveConnect but have no graphics continue to work.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie JavaScript-Java Bridge

Download JavaScript-Java Bridge-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        A web browser is a good user interface for a native application. The Java browser Plugin provided an easy way for Java programs, configured as Applets, to manipulate webpages, and for the webpages to both get and set Java fields and call Java methods via the LiveConnect API (https://www.oracle.com/technetwork/java/javase/overview/liveconnect-docs-349790.html). This was in addition to the ability of Applets to display their graphics in a rectangle on their webpages.

However both the Java Plugin and Applets are now being deprecated as security and browser-stability risks. Continued use of them requires use of an older browser version, and soon an older Java version.

This extension and associated Java library allows Applets which display no graphics but only interact with JavaScript and the DOM to continue to be used on current browser and Java versions with minor changes on both the Java and JavaScript sides. Display of Applet graphics may be supported in the future.

The alternative to using this extension to turn a browser into a Java user interface would be to write the Java Program as a backend API, and have the browser frontend interact with this via Ajax/XMLHttpRequest calls, perhaps under a framework such as React. This does have the advantage of weak coupling, allowing the backend and frontend to be separately developed, and simultaneously accessed from multiple browsers. But, besides the obvious advantage for UIs already written as Applets, the remote procedure call and remote DOM manipulation paradigm of JSJBridge/LiveConnect, and the automatic start-stop synchronisation of the front and back ends, can continue to make this an easy, efficient, fast, and powerful solution.

Licence:

This extension and its associated Java library are licensed under Version 1 of the DevWheels Licence (https://devwheels.com). Read the licence for the precise conditions, but a simple summary would be:

1. You can use this package without payment for evaluation, internal testing, and development work on your application or fork.

2. However you must pay me AUD $20 for each browser on which this is installed and otherwise run.

3. The cost of an update is the difference between the costs of the versions you are upgrading between.

4. You can release your own modified or unmodified version, and charge what you like, as long as you keep the same licence, which means complying with point 2 and forwarding AUD $20 to me for each production installation.

The advantage of this licence is that it both retains the enhanced debugging, customisation, risk-mitigation, and community development of Free/Open Source software (its most important features IMHO), while making it practical for developers to earn a living directly from their software (or their documentation writing, or their marketing nous).

If you have an idea for, or an implementation of, enhancements, I encourage you see whether they can be incorporated into my extension rather than publishing your own fork. We may be able to come to an agreement for a revenue share, and reduce the number of similar extensions.

The JSJBridge source code: https://github.com/mrj/jsjbridge
  
Migrating from Applets and the Java Plugin to WebpageHelpers and JSJBridge: https://github.com/mrj/jsjbridge/blob/master/MigrationInstructions.md                    

Basisinformatie over de Extensie

Naam JavaScript-Java Bridge JavaScript-Java Bridge
ID beglnkgbajkhcmmdkldmgbkggoeegabe
Officiële URL https://chromewebstore.google.com/detail/javascript-java-bridge/beglnkgbajkhcmmdkldmgbkggoeegabe
Beschrijving A replacement for the Java Plugin, so Java Applets that use LiveConnect but have no graphics continue to work.
Bestandsgrootte 23.32 KB
Aantal Installaties 32,922
Huidige Versie 1.81
Laatst Bijgewerkt 2020-06-18
Publicatiedatum 2020-06-17
Beoordeling 1.00/5 Totaal 2 Beoordelingen
Ontwikkelaar https://advancedcontrols.com.au
E-mail [email protected]
Betalingswijze in_app
Ondersteunde Talen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JavaScript-Java Bridge",
    "short_name": "JSJBridge",
    "version": "1.81",
    "description": "A replacement for the Java Plugin, so Java Applets that use LiveConnect but have no graphics continue to work.",
    "minimum_chrome_version": "63",
    "icons": {
        "128": "jsjbridge-icon-128x128.png",
        "48": "jsjbridge-icon-48x48.png",
        "16": "jsjbridge-icon-16x16.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "jsjbridge.js"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "nativeMessaging",
        "storage"
    ]
}