Chess.com Custom Pieces & GIF Background

Customize your chess board on Chess.com with your own images and even animated GIFs! Import new ones or share yours with others.

Chess.com Custom Pieces & GIF Background란 무엇입니까?

Chess.com Custom Pieces & GIF Background은(는) Arthur Smith에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customize your chess board on Chess.com with your own images and even animated GIFs! Import new ones or share yours with others."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Chess.com Custom Pieces & GIF Background 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Chess.com Custom Pieces is a browser extension that allows users to customize the chess pieces and the background on the popular online chess platform, Chess.com. With this extension, users can easily upload their own images to replace the default chess pieces and set their own custom background.

How to use:
♟︎ Open the extension.
♟︎ Select the piece you want to customize
♟︎ Choose an image or a GIF from your computer
♟︎ Click "Save Changes" to apply the new image
♟︎ Export your profile to share it with others
Note: The extension won't work with the arcade or natural animation modes

The default background was created by lennsan.

Disclosure: This extension contain affiliate links, which means we may earn a commission if you click on a link and make a purchase. We only promote products that we believe in and have personally used. The commission earned helps us to keep this extension free for all users. Thank you for your support!                    

확장 프로그램 기본 정보

이름 Chess.com Custom Pieces & GIF Background Chess.com Custom Pieces & GIF Background
ID lnbgncfhcgnaaaaipfcbahibmdejcnmm
공식 URL https://chromewebstore.google.com/detail/chesscom-custom-pieces-gi/lnbgncfhcgnaaaaipfcbahibmdejcnmm
설명 Customize your chess board on Chess.com with your own images and even animated GIFs! Import new ones or share yours with others.
파일 크기 101 KB
설치 횟수 1,129
현재 버전 0.3.2
최근 업데이트 2023-08-18
출시 날짜 2023-03-05
평점 4.00/5 총 3 개의 평점
개발자 Arthur Smith
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Chess.com Custom Pieces & GIF Background",
    "description": "Customize your chess board on Chess.com with your own images and even animated GIFs! Import new ones or share yours with others.",
    "version": "0.3.2",
    "content_security_policy": {
        "extension_pages": "script-src 'self' ; object-src 'self'"
    },
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Chess.com Custom Pieces",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "scripting",
        "downloads",
        "tabs",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.chess.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}