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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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": [
                ""
            ]
        }
    ]
}