EOS Plugin
EOS Plugin allows you to run EOS dApps right in your browser without running a full EOS node.
Co to jest EOS Plugin?
EOS Plugin to rozszerzenie Chrome opracowane przez https://eosplugin.io, a jego główną funkcją jest „EOS Plugin allows you to run EOS dApps right in your browser without running a full EOS node.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia EOS Plugin
Pobierz pliki rozszerzeń EOS Plugin w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | onephhclgccdnebcnofmkdgkpkendcnd |
| Oficjalny URL | https://chrome.google.com/webstore/detail/eos-plugin/onephhclgccdnebcnofmkdgkpkendcnd |
| Opis | EOS Plugin allows you to run EOS dApps right in your browser without running a full EOS node. |
| Rozmiar pliku | 1.83 MB |
| Liczba instalacji | 671 |
| Aktualna Wersja | 1.0.2 |
| Ostatnia Aktualizacja | 2019-03-08 |
| Data Publikacji | 2019-03-08 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | https://eosplugin.io |
| Typ Płatności | free |
| Adres URL Strony Pomocy | https://github.com/EOSWebWallet/EOSPlugin-Project |
| Obsługiwane Języki | 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"
]
}
} | |