CheerpJ Applet Runner

Run Java applets without installing Java

什么是CheerpJ Applet Runner?

CheerpJ Applet Runner是由https://leaningtech.com开发的Chrome扩展程序,该扩展的主要功能是“Run Java applets without installing Java”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载CheerpJ Applet Runner扩展crx文件

下载CheerpJ Applet Runner扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        CheerpJ Applet Runner - Run Java applets without installing Java

With the CheerpJ Applet Runner extension, you can run legacy Java Applets on modern browsers without a Java plugin or a local installation of Java.

Using The CheerpJ Applet Runner is simple. Install the extension, visit your Applet-based website, and enable the extension by clicking on its icon on the upper right corner of your browser!

This extension works by 'converting' the Java Applet to WebAssembly and JavaScript on the fly. It is private and secure, runs fully client-side (i.e. it does not contact any server), and does not collect any data or analytics at all. All your data, as well as your application are kept within the boundaries of your browser.

This extension, developed by Leaning Technologies, is based on CheerpJ, a professional Java to HTML5 compiler. More information on CheerpJ are available at https://leaningtech.com/cheerpj/

This software is free to use for non-commercial purposes on public-network Applets. For any other use, such as internal network applets, or if you are a company or public-sector organisation and would like to license CheerpJ, please get in touch with [email protected].                    

扩展基本信息

名称 CheerpJ Applet Runner CheerpJ Applet Runner
ID bbmolahhldcbngedljfadjlognfaaein
官方URL https://chromewebstore.google.com/detail/cheerpj-applet-runner/bbmolahhldcbngedljfadjlognfaaein
简介 Run Java applets without installing Java
文件大小 77.73 MB
安装次数 126,164
当前版本 10.6
更新时间 2023-02-09
上架时间 2020-02-06
评分 4.53/5 共240次评分
开发者 https://leaningtech.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://leaningtech.com/cheerpj-applet-runner/
帮助页面URL https://github.com/leaningtech/cheerpj-appletrunner
隐私政策页面URL https://leaningtech.com/privacy-policy-cheerpj-ar
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CheerpJ Applet Runner",
    "description": "Run Java applets without installing Java",
    "version": "10.6",
    "icons": {
        "128": "cheerpj.png"
    },
    "action": {
        "default_icon": "cheerpj.png",
        "default_popup": "popup.html",
        "default_title": "Click to run applets"
    },
    "background": {
        "service_worker": "bg.js"
    },
    "permissions": [
        "scripting",
        "activeTab"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "cheerpj\/*",
                "spoof.js",
                "settings.html",
                "attach_simple.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}