Metapiece
Metapiece lets you use any webpage as the background layer to create your graffiti and show your artwork on top of the webpage.
Τι είναι το Metapiece;
Το Metapiece είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://metapiece.com, και η κύρια λειτουργία του είναι "Metapiece lets you use any webpage as the background layer to create your graffiti and show your artwork on top of the webpage.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Metapiece
Λήψη αρχείων επέκτασης Metapiece σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | hacphobnbijbgfbobiicgoncnhcpfiim |
Επίσημο URL | https://chrome.google.com/webstore/detail/metapiece/hacphobnbijbgfbobiicgoncnhcpfiim |
Περιγραφή | Metapiece lets you use any webpage as the background layer to create your graffiti and show your artwork on top of the webpage. |
Μέγεθος Αρχείου | 492 KB |
Αριθμός Εγκαταστάσεων | 32 |
Τρέχουσα Έκδοση | 1.1 |
Τελευταία Ενημέρωση | 2021-06-09 |
Ημερομηνία Δημοσίευσης | 2021-06-03 |
Αξιολόγηση | 3.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | http://metapiece.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://metapiece.com |
Διεύθυνση URL της Σελίδας Βοήθειας | https://support.metapiece.com |
Υποστηριζόμενες Γλώσσες | 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": [] } ] } |