EOS Plugin
EOS Plugin allows you to run EOS dApps right in your browser without running a full EOS node.
什么是EOS Plugin?
EOS Plugin是由https://eosplugin.io开发的Chrome扩展程序,该扩展的主要功能是“EOS Plugin allows you to run EOS dApps right in your browser without running a full EOS node.”。
扩展截图
下载EOS Plugin扩展crx文件
下载EOS Plugin扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
EOS Plugin is a bridge that give you a chance you to visit the future world of distributed web in your browser today. It allows you to run EOS dApps right in your browser without running a full EOS node. Open source software: work with dApps, create anonymous identities, send/receive tokens, sign transactions, etc.
扩展基本信息
名称 | |
ID | onephhclgccdnebcnofmkdgkpkendcnd |
官方URL | https://chrome.google.com/webstore/detail/eos-plugin/onephhclgccdnebcnofmkdgkpkendcnd |
简介 | EOS Plugin allows you to run EOS dApps right in your browser without running a full EOS node. |
文件大小 | 1.83 MB |
安装次数 | 671 |
当前版本 | 1.0.2 |
更新时间 | 2019-03-08 |
上架时间 | 2019-03-08 |
评分 | 5.00/5 共1次评分 |
开发者 | https://eosplugin.io |
付费类型 | free |
帮助页面URL | https://github.com/EOSWebWallet/EOSPlugin-Project |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "EOS Plugin", "description": "EOS Plugin allows you to run EOS dApps right in your browser without running a full EOS node.", "version": "1.0.2", "permissions": [ "tabs", "activeTab", "storage" ], "browser_action": { "default_title": "EOS Plugin", "default_popup": "index.html", "default_icon": "icon.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "web_accessible_resources": [ "assets\/css\/*", "assets\/js\/*", "assets\/fonts\/*", "inject.js" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] } } |