PkiUtils

Manage user certificates and certificate requests from Windows Certificate Store.

PkiUtilsคืออะไร?

PkiUtils เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://lfernsplay.com และคุณลักษณะหลักของมันคือ "Manage user certificates and certificate requests from Windows Certificate Store."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PkiUtils

ดาวน์โหลดไฟล์ส่วนขยาย PkiUtils ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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