Earth Wallet
The Wallet for Earth.
Cos'è Earth Wallet?
Earth Wallet è un'estensione di Chrome sviluppata da http://earthwallet.io, e la sua funzione principale è "The Wallet for Earth.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Earth Wallet
Scarica i file di estensione Earth Wallet in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Earth Wallet is an open source and free digital asset wallet for regenerative finance and NFTs. Create, Collect, and share art, music, and photography NFTs that help power movements to regenerate the Earth.
Informazioni di Base sull'Estensione
Nome | |
ID | agkfnefiabmfpanochlcakggnkdfmmjd |
URL Ufficiale | https://chrome.google.com/webstore/detail/earth-wallet/agkfnefiabmfpanochlcakggnkdfmmjd |
Descrizione | The Wallet for Earth. |
Dimensione del File | 68.74 MB |
Conteggio Installazioni | 7,662 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2023-02-25 |
Data di Pubblicazione | 2021-07-20 |
Valutazione | 3.67/5 Totale 12 Valutazioni |
Sviluppatore | http://earthwallet.io |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://earthwallet.io |
URL della Pagina di Aiuto | https://t.me/earth_wallet |
URL della Pagina della Politica sulla Privacy | https://www.earthwallet.io/privacy |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Earth Wallet", "version": "1.0.1", "icons": { "16": "assets\/images\/icon-16.png", "32": "assets\/images\/icon-32.png", "48": "assets\/images\/icon-48.png", "64": "assets\/images\/icon-64.png", "128": "assets\/images\/icon-128.png" }, "description": "The Wallet for Earth.", "homepage_url": "https:\/\/github.com\/earthdao\/wallet", "short_name": "Earth Wallet", "permissions": [ "activeTab", "storage", "http:\/\/*\/*", "https:\/\/*\/*", "chrome:\/\/favicon\/" ], "content_security_policy": "script-src 'self' blob: 'unsafe-eval' 'wasm-eval'; object-src 'self'; script-src-elem 'self' data:;", "author": "earth", "minimum_chrome_version": "49", "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "assets\/images\/icon-16.png", "32": "assets\/images\/icon-32.png", "48": "assets\/images\/icon-48.png", "64": "assets\/images\/icon-64.png", "128": "assets\/images\/icon-128.png" }, "default_title": "Earth Wallet", "chrome_style": false }, "background": { "scripts": [ "js\/background.bundle.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/contentScript.bundle.js" ], "run_at": "document_start", "all_frames": false } ] } |