OpenLink YouID
YouID selector.
Τι είναι το OpenLink YouID;
Το OpenLink YouID είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον OpenLink Software, και η κύρια λειτουργία του είναι "YouID selector.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης OpenLink YouID
Λήψη αρχείων επέκτασης OpenLink YouID σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
A tool for generating verifiable credentials, tokenized in a digital certificate, from a wide variety of profile data sources that includes: [1] Any HTML document over which you have read-write privileges -- this includes profile pages from Github, Twitter, Linktree, Instagram, Quora, and many others [2] Profile Knowledge Graphs deployed as structured data islands embedded in HTML [3] Pure RDF documents (Turtle, JSON-LD, RDF-XML, others) [4] Bitcoin or Ethereum Blockchains -- without incurring an gas, proof-of-work, or proof-of-stake related fees Following installation, you will be able to take advantage of the following benefits: [1] Generate verifiable credentials (digital certificates and their associated private keys) directly from you browser to a secure file. [2] Enjoy self-sovereign identity authenticity that scales to both the Internet & Web e.g., sending digitally-signed emails that verify your identity to mail recipients [3] Leverage existing Public Key Infrastructure (PKI) and emerging Decentralized Public Key Infrastructure (DPKI) for both password-less authentication and self-sovereign identity authenticity, courtesy of hyperlink-based identifiers (WebIDs and NetIDs) used in conjunction with broadly used protocols such as OpenID-Connect + OAuth 2.0 and/or TLS (including HTTPS).
Βασικές Πληροφορίες Επέκτασης
Όνομα | OpenLink YouID |
ID | kbepkemknbihgdmdnfainhmiidoblhee |
Επίσημο URL | https://chromewebstore.google.com/detail/openlink-youid/kbepkemknbihgdmdnfainhmiidoblhee |
Περιγραφή | YouID selector. |
Μέγεθος Αρχείου | 2.1 MB |
Αριθμός Εγκαταστάσεων | 70 |
Τρέχουσα Έκδοση | 1.6.9 |
Τελευταία Ενημέρωση | 2023-03-18 |
Ημερομηνία Δημοσίευσης | 2019-02-28 |
Προγραμματιστής | OpenLink Software |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | http://youid.openlinksw.com/ |
Διεύθυνση URL της Σελίδας Βοήθειας | http://support.openlinksw.com/ |
URL της Σελίδας Πολιτικής Απορρήτου | https://www.openlinksw.com/privacy |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "OpenLink YouID", "short_name": "opl_youid", "author": "OpenLink Software", "version": "1.6.9", "manifest_version": 2, "minimum_chrome_version": "18", "description": "YouID selector.", "icons": { "16": "images\/icon20.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": "images\/icon20.png", "default_title": "YouID", "default_popup": "popup.html" }, "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "file:\/\/\/*\/*", "*:\/\/*\/*" ], "js": [ "browser.js", "content-script.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/*\/*" ], "js": [ "browser.js", "oidc-webid-inject.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.google.com\/robots.txt*", "http:\/\/www.facebook.com\/robots.txt*", "https:\/\/login.live.com\/oauth20_desktop.srf*", "http:\/\/id.myopenlink.net\/OAuthCallback*", "https:\/\/id.myopenlink.net\/OAuthCallback*" ], "js": [ "oauth2\/oauth2_inject.js" ], "run_at": "document_start" } ], "options_page": "options.html", "permissions": [ "storage", "webRequest", "webRequestBlocking", "tabs", "http:\/\/*\/", "https:\/\/*\/", "*:\/\/*\/*", "file:\/\/\/*\/*", "https:\/\/accounts.google.com\/o\/oauth2\/token" ], "web_accessible_resources": [ "oauth2\/oauth2.html" ], "content_security_policy": "script-src 'self' 'unsafe-eval' chrome-extension:\/\/lib; object-src 'self' chrome-extension:\/\/lib; style-src 'self' 'unsafe-inline' chrome-extension:\/\/lib https:\/\/solid.openlinksw.com; media-src 'self' 'unsafe-inline' chrome-extension:\/\/lib ;" } |