Metapiece

Metapiece lets you use any webpage as the background layer to create your graffiti and show your artwork on top of the webpage.

Was ist Metapiece?

Metapiece ist eine Chrome-Erweiterung, die von http://metapiece.com entwickelt wurde, und ihr Hauptmerkmal ist "Metapiece lets you use any webpage as the background layer to create your graffiti and show your artwork on top of the webpage.".

Erweiterungsscreenshots

screenshot

Metapiece-Erweiterungs-CRX-Datei herunterladen

Laden Sie Metapiece-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Metapiece Metapiece
ID hacphobnbijbgfbobiicgoncnhcpfiim
Offizielle URL https://chrome.google.com/webstore/detail/metapiece/hacphobnbijbgfbobiicgoncnhcpfiim
Beschreibung Metapiece lets you use any webpage as the background layer to create your graffiti and show your artwork on top of the webpage.
Dateigröße 492 KB
Installationsanzahl 32
Aktuelle Version 1.1
Letztes Update 2021-06-09
Veröffentlichungsdatum 2021-06-03
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler http://metapiece.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://metapiece.com
Hilfeseite URL https://support.metapiece.com
Unterstützte Sprachen 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": []
        }
    ]
}