Parity Signer Companion
Injects your Polkadot accounts from Parity Signer and allows signing transactions
什麼是Parity Signer Companion?
Parity Signer Companion是由Parity Technologies開發的Chrome擴展程式,該擴展的主要功能是“Injects your Polkadot accounts from Parity Signer and allows signing transactions”。
擴展截圖
下載Parity Signer Companion擴展crx文件
下載Parity Signer Companion擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
The extension helps you to sign transactions with keys you store in the Parity Signer — https://www.parity.io/technologies/signer/. To start using, you should go to the Signer and import keys. Without the Signer the extension is useless. If you want to create and store keys without any device, look at Polkadot{.js} extension — https://github.com/polkadot-js/extension.
擴展基本資訊
名稱 | |
ID | damllfnhhcbmclmjilomenbhkappdjgb |
官方網址 | https://chromewebstore.google.com/detail/parity-signer-companion/damllfnhhcbmclmjilomenbhkappdjgb |
簡介 | Injects your Polkadot accounts from Parity Signer and allows signing transactions |
檔案大小 | 1.36 MB |
安裝次數 | 259 |
目前版本 | 0.1.9 |
更新時間 | 2022-10-18 |
上架時間 | 2021-10-18 |
評分 | 3.00/5 共 1 次評分 |
開發者 | Parity Technologies |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://www.parity.io/technologies/signer/ |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Parity Technologies", "description": "Injects your Polkadot accounts from Parity Signer and allows signing transactions", "homepage_url": "https:\/\/github.com\/paritytech\/parity-signer-companion", "name": "Parity Signer Companion", "short_name": "Signer Companion", "manifest_version": 2, "permissions": [ "storage", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_title": "Parity Signer Companion", "default_popup": "index.html" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "64": "images\/icon-64.png", "128": "images\/icon-128.png" }, "web_accessible_resources": [ "page.js" ], "content_security_policy": "script-src 'self' blob: 'unsafe-eval' 'wasm-eval'; object-src 'self'", "version": "0.1.9" } |