PkiUtils

Manage user certificates and certificate requests from Windows Certificate Store.

PkiUtils क्या है?

PkiUtils https://lfernsplay.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Manage user certificates and certificate requests from Windows Certificate Store."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में PkiUtils एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        With this extension you can access to the Windows Certificate Store to export user certificates (PKCS#12) using QR codes that can be scanned from a smartphone, or import them using a camera connected to the computer.

To perform the import/export of certificates, an animation will be showed with the QR codes, necessary to encode the information (in most cases the size of a PKCS#12 will be larger than it can be encoded in a single QR code).

This extension also includes a content script that will allow the KEYGEN function to be invoked from any web page, which will create a private key within the Windows Certificate Store and compose a PKCS#10 certificate request (similar to the old  tag that was available long ago in web browsers).                    

एक्सटेंशन की मूल जानकारी

नाम PkiUtils PkiUtils
ID ojmfjacfbnjmdhddbjmilajollamngih
आधिकारिक URL https://chromewebstore.google.com/detail/pkiutils/ojmfjacfbnjmdhddbjmilajollamngih
विवरण Manage user certificates and certificate requests from Windows Certificate Store.
फ़ाइल का आकार 1.33 MB
स्थापना संख्या 30
वर्तमान संस्करण 1.4
अंतिम अपडेट 2020-07-12
प्रकाशन तिथि 2020-07-11
डेवलपर https://lfernsplay.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://pkiutils.lfernsplay.com
समर्थित भाषाएँ en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.4",
    "homepage_url": "http:\/\/pkiutils.lfernsplay.com",
    "manifest_version": 2,
    "author": "[email protected]",
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png",
        "180": "icons\/icon-180.png",
        "192": "icons\/icon-192.png",
        "512": "icons\/icon-512.png"
    },
    "browser_action": {
        "default_title": "PkiUtils",
        "default_popup*": "index.html",
        "default_icon": {
            "16": "icons\/icon-16.png"
        }
    },
    "background": {
        "persistent": true,
        "scripts": [
            "utils.js",
            "background.js",
            "assets\/hot-reload.js"
        ]
    },
    "permissions": [
        "nativeMessaging",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "contentScript.js"
            ]
        },
        {
            "matches": [
                "file:\/\/\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "icons\/*.png"
    ]
}