Metapiece
Metapiece lets you use any webpage as the background layer to create your graffiti and show your artwork on top of the webpage.
¿Qué es Metapiece?
Metapiece es una extensión de Chrome desarrollada por http://metapiece.com, y su función principal es "Metapiece lets you use any webpage as the background layer to create your graffiti and show your artwork on top of the webpage.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Metapiece
Descarga archivos de extensión Metapiece en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | hacphobnbijbgfbobiicgoncnhcpfiim |
URL Oficial | https://chrome.google.com/webstore/detail/metapiece/hacphobnbijbgfbobiicgoncnhcpfiim |
Descripción | Metapiece lets you use any webpage as the background layer to create your graffiti and show your artwork on top of the webpage. |
Tamaño del Archivo | 492 KB |
Cantidad de Instalaciones | 32 |
Versión Actual | 1.1 |
Última Actualización | 2021-06-09 |
Fecha de Publicación | 2021-06-03 |
Calificación | 3.00/5 Total de 2 Calificaciones |
Desarrollador | http://metapiece.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://metapiece.com |
URL de la Página de Ayuda | https://support.metapiece.com |
Idiomas Soportados | 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": [] } ] } |