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은(는) http://metapiece.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Metapiece lets you use any webpage as the background layer to create your graffiti and show your artwork on top of the webpage."입니다.

확장 프로그램 스크린샷

screenshot

Metapiece 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Metapiece Metapiece
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": []
        }
    ]
}