EOS Plugin
EOS Plugin allows you to run EOS dApps right in your browser without running a full EOS node.
Was ist EOS Plugin?
EOS Plugin ist eine Chrome-Erweiterung, die von https://eosplugin.io entwickelt wurde, und ihr Hauptmerkmal ist "EOS Plugin allows you to run EOS dApps right in your browser without running a full EOS node.".
Erweiterungsscreenshots
EOS Plugin-Erweiterungs-CRX-Datei herunterladen
Laden Sie EOS Plugin-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | onephhclgccdnebcnofmkdgkpkendcnd |
| Offizielle URL | https://chrome.google.com/webstore/detail/eos-plugin/onephhclgccdnebcnofmkdgkpkendcnd |
| Beschreibung | EOS Plugin allows you to run EOS dApps right in your browser without running a full EOS node. |
| Dateigröße | 1.83 MB |
| Installationsanzahl | 671 |
| Aktuelle Version | 1.0.2 |
| Letztes Update | 2019-03-08 |
| Veröffentlichungsdatum | 2019-03-08 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | https://eosplugin.io |
| Zahlungsart | free |
| Hilfeseite URL | https://github.com/EOSWebWallet/EOSPlugin-Project |
| Unterstützte Sprachen | 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"
]
}
} | |