steemconnect
Signer app for Steem
What is steemconnect?
steemconnect is a Chrome extension developed by bonustrack, and its main feature is "Signer app for Steem".
Extension Screenshots
Download steemconnect Extension CRX File
Download steemconnect extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
With SteemConnect, you're always in control of your private keys: we neither store nor have access to them.
Extension Basic Information
Name | steemconnect |
ID | enaifbbcamagcjaaeeaomhofifdgpjcn |
Official URL | https://chromewebstore.google.com/detail/steemconnect/enaifbbcamagcjaaeeaomhofifdgpjcn |
Description | Signer app for Steem |
File Size | 3.51 MB |
Installation Count | 1,391 |
Current Version | 0.1.4 |
Last Updated | 2019-09-24 |
Publish Date | 2019-09-20 |
Rating | 3.86/5 Total 7 Ratings |
Developer | bonustrack |
Payment Type | free |
Extension Website | https://steemconnect.com |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "steemconnect", "version": "0.1.4", "description": "Signer app for Steem", "icons": { "16": "icon16.png", "32": "favicon.png", "48": "icon48.png", "128": "icon128.png", "256": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "index.html" }, "web_accessible_resources": [ "pagescript.js" ], "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ], "run_at": "document_start", "all_frames": true } ], "permissions": [ "activeTab" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "manifest_version": 2 } |