Chrome NPAPI Replacement

Chrome injects Javascript into dummy.html

Chrome NPAPI Replacement란 무엇입니까?

Chrome NPAPI Replacement은(는) jvanschalkwyk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome injects Javascript into dummy.html"입니다.

확장 프로그램 스크린샷

screenshot

Chrome NPAPI Replacement 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A Chrome plugin specific to the fehr Free Electronic Health Record. 

Chrome doesn't support NPAPI, which can be used to permit specific, limited access to local machine functions from the browser. This Chrome plugin is based on Chrome's alternative --- PPAPI/NaCl. 

An example: A text help file can be read from the local machine into the fehr Javascript program. This is powerful, but also potentially dangerous (as is crossing a road). 

In the PPAPI variant, a Python script allows limited access to certain directories on the host machine. Secure data are encrypted and written there, and can only be decrypted using a key stored remotely on the server and provided during a secure browser transaction. 

The plugin also allows interaction in a distinct, separate second mode where there is explicitly no server interaction, and a very limited set of files can be read directly into the browser from the local machine. This is useful for casual use, specifically where there is NO web access, and we wish to use the browser to access local "insecure" data. This functionality is particularly useful for teaching and debugging. 

Full documentation is available at http://www.fehr.org                    

확장 프로그램 기본 정보

이름 Chrome NPAPI Replacement Chrome NPAPI Replacement
ID okoafaojkokbmieeefnflkiklhanpeoc
공식 URL https://chrome.google.com/webstore/detail/chrome-npapi-replacement/okoafaojkokbmieeefnflkiklhanpeoc
설명 Chrome injects Javascript into dummy.html
파일 크기 19.08 KB
설치 횟수 30,000
현재 버전 1.0.4
최근 업데이트 2017-07-23
출시 날짜 2017-07-23
평점 3.05/5 총 120 개의 평점
개발자 jvanschalkwyk
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://www.fehr.org
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome NPAPI Replacement",
    "description": "Chrome injects Javascript into dummy.html",
    "version": "1.0.4",
    "icons": {
        "16": "servechrome-16.png",
        "128": "servechrome-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/\/C:\/fehr\/serve\/dummy.html"
            ],
            "js": [
                "inject.js"
            ],
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": "servechrome-16.png",
        "default_title": "Communication by injection"
    },
    "permissions": [
        "nativeMessaging",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "externally_connectable": {
        "matches": []
    }
}