Metapiece
Metapiece lets you use any webpage as the background layer to create your graffiti and show your artwork on top of the webpage.
Cos'è Metapiece?
Metapiece è un'estensione di Chrome sviluppata da http://metapiece.com, e la sua funzione principale è "Metapiece lets you use any webpage as the background layer to create your graffiti and show your artwork on top of the webpage.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Metapiece
Scarica i file di estensione Metapiece 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
Metapiece = Metaverse + Masterpiece. It is a new way to bring graffiti/mural/meme art to the everyday internet browsing experience. Metapiece lets you use any webpage as the background layer to create your graffiti/mural/meme and show your artwork on top of the webpage. By installing the chrome extension, you can see all artworks that people create on different webpages as you visit the same webpage. ★ Artwork information: You can find the description of the artwork and information of the creator using the extension. ★ NFT minting: You can mint your creation as an NFT. To learn more, please go to https://metapiece.com.
Informazioni di Base sull'Estensione
Nome | |
ID | hacphobnbijbgfbobiicgoncnhcpfiim |
URL Ufficiale | https://chrome.google.com/webstore/detail/metapiece/hacphobnbijbgfbobiicgoncnhcpfiim |
Descrizione | Metapiece lets you use any webpage as the background layer to create your graffiti and show your artwork on top of the webpage. |
Dimensione del File | 492 KB |
Conteggio Installazioni | 32 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2021-06-09 |
Data di Pubblicazione | 2021-06-03 |
Valutazione | 3.00/5 Totale 2 Valutazioni |
Sviluppatore | http://metapiece.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://metapiece.com |
URL della Pagina di Aiuto | https://support.metapiece.com |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Metapiece lets you use any webpage as the background layer to create your graffiti and show your artwork on top of the webpage.", "version": "1.1", "manifest_version": 3, "name": "Metapiece", "background": { "service_worker": "background.bundle.js" }, "action": { "default_popup": "popup.html", "default_icon": "logo.png" }, "icons": { "128": "logo.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "contentScript.bundle.js" ], "run_at": "document_idle" } ], "permissions": [ "tabs", "storage" ], "devtools_page": "devtools.html", "web_accessible_resources": [ { "resources": [ "icon-128.png", "icon-34.png", "logo.svg", "logo.png", "etherscan.svg" ], "matches": [] } ] } |