KinConnect
KIN Blockchain Browser Extension
Qu'est-ce que KinConnect ?
KinConnect est une extension Chrome développée par Ahmad Sghaier Omar, et sa fonction principale est "KIN Blockchain Browser Extension".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension KinConnect
Téléchargez les fichiers d'extension KinConnect au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
KinConnect is a KIN Blockchain Browser extension providing the features of a wallet and also enables web apps to interact with the KIN Blockchain using an injected window.kin object.
The extension provides main features of a wallet, including
creating and importing wallet
Viewing the balance and transactions
Export account address by either copying the address or display the QR code
Export Secret Key
Link to view accounts details and transactions on kinexplorer.org
The wallet is stored in encrypted format in local storage Informations de Base sur l'Extension
| Nom | |
| ID | jpbckcmmldmgmhdepehaoocccomimbgo |
| URL Officiel | https://chrome.google.com/webstore/detail/jpbckcmmldmgmhdepehaoocccomimbgo |
| Description | KIN Blockchain Browser Extension |
| Taille du Fichier | 706 KB |
| Nombre d'Installations | 13 |
| Version Actuelle | 1.0.0 |
| Dernière Mise à Jour | 2019-10-05 |
| Date de Publication | 2019-10-04 |
| Évaluation | 5.00/5 Total 2 Évaluations |
| Développeur | Ahmad Sghaier Omar |
| [email protected] | |
| Type de Paiement | free |
| Langues Prises en Charge | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "KinConnect",
"description": "KIN Blockchain Browser Extension",
"version": "1.0.0",
"manifest_version": 2,
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"icons": {
"48": "icons\/icon_48.png",
"128": "icons\/icon_128.png"
},
"browser_action": {
"default_title": "KinConnect",
"default_popup": "popup\/popup.html"
},
"background": {
"scripts": [
"background.js"
]
},
"web_accessible_resources": [
"inpage.js"
],
"permissions": [
"*:\/\/*.kinfederation.com\/*",
"*:\/\/*.kinexplorer.com\/*",
"*:\/\/kinouponapi.herokuapp.com\/*",
"activeTab",
"tabs",
"alarms",
"storage",
"notifications"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"contentscript.js"
],
"run_at": "document_start",
"all_frames": true
}
]
} | |