KinConnect
KIN Blockchain Browser Extension
O que é KinConnect?
KinConnect é uma extensão do Chrome desenvolvida por Ahmad Sghaier Omar, e sua principal característica é "KIN Blockchain Browser Extension".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão KinConnect
Baixe arquivos de extensão KinConnect no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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 Informações Básicas da Extensão
| Nome | |
| ID | jpbckcmmldmgmhdepehaoocccomimbgo |
| URL Oficial | https://chrome.google.com/webstore/detail/jpbckcmmldmgmhdepehaoocccomimbgo |
| Descrição | KIN Blockchain Browser Extension |
| Tamanho do Arquivo | 706 KB |
| Contagem de Instalações | 13 |
| Versão Atual | 1.0.0 |
| Última Atualização | 2019-10-05 |
| Data de Publicação | 2019-10-04 |
| Classificação | 5.00/5 Total de 2 Avaliações |
| Desenvolvedor | Ahmad Sghaier Omar |
| [email protected] | |
| Tipo de Pagamento | free |
| Idiomas Suportados | 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
}
]
} | |