Chrome NPAPI Replacement

Chrome injects Javascript into dummy.html

Τι είναι το Chrome NPAPI Replacement;

Το Chrome NPAPI Replacement είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jvanschalkwyk, και η κύρια λειτουργία του είναι "Chrome injects Javascript into dummy.html".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Chrome NPAPI Replacement

Λήψη αρχείων επέκτασης Chrome NPAPI Replacement σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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