CKey
A Chrome Extension that emulates a Hardware Authentication Device
CKey क्या है?
CKey chomekeyextension द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome Extension that emulates a Hardware Authentication Device"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में CKey एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Chrome Key emulates a Hardware Authentication Device. It is capable of answering Webauthn requests for both registering new keys and authenticating with existing ones. The purpose is to allow developers to test their applications without requiring having an actual device in hand. It relies on browser standards such as Web Cryptography API and Concise Binary Object Representation for generation and interaction with key material. This will never be able to provide the same security guarantees as a real HAD, so use it for development, debugging and testing only. A 3-post blog series was written, touching different portions of this extension, its guarantees and lack of. The first post of the series may be found here https://blog.joaopeixoto.net/chrome-key-an-extension-story/.
एक्सटेंशन की मूल जानकारी
नाम | CKey |
ID | fjdlagkdaoginbnmlhcpochmeecjgcah |
आधिकारिक URL | https://chromewebstore.google.com/detail/ckey/fjdlagkdaoginbnmlhcpochmeecjgcah |
विवरण | A Chrome Extension that emulates a Hardware Authentication Device |
फ़ाइल का आकार | 163 KB |
स्थापना संख्या | 47 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2020-01-26 |
प्रकाशन तिथि | 2020-01-26 |
डेवलपर | chomekeyextension |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CKey", "description": "A Chrome Extension that emulates a Hardware Authentication Device", "version": "1.0.2", "minimum_chrome_version": "36.0.1985.18", "content_scripts": [ { "all_frames": true, "matches": [ "https:\/\/*\/*" ], "exclude_matches": [ "https:\/\/*\/*.xml" ], "run_at": "document_start", "js": [ "js\/content_script.js" ] } ], "background": { "persistent": false, "scripts": [ "js\/babel_polyfill.js", "js\/background.js" ] }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "page_action": { "default_icon": { "16": "images\/lock-16.png", "32": "images\/lock-32.png", "48": "images\/lock-48.png", "128": "images\/lock-128.png" } }, "icons": { "16": "images\/lock-16.png", "32": "images\/lock-32.png", "48": "images\/lock-48.png", "128": "images\/lock-128.png" }, "permissions": [ "tabs", "storage", "https:\/\/*\/*", "http:\/\/*\/*" ], "web_accessible_resources": [ "js\/inject_webauthn.js", "img\/*" ] } |