Arrow Painter for Chess.com
Change the arrow colors on chess.com website.
Arrow Painter for Chess.com란 무엇입니까?
Arrow Painter for Chess.com은(는) Luiz Costa에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Change the arrow colors on chess.com website."입니다.
확장 프로그램 스크린샷
Arrow Painter for Chess.com 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Change the arrow colors on chess.com website. If you use a theme that makes chess.com arrows difficult to see, this extension is for you. Features: * Allows you to choose the desired color * Option to enable or disable coloring NOTE: Chess.com has a multi-color feature if you draw the arrows using SHIFT, CTRL or ALT keys. If you install this extension ALL ARROWS WILL HAVE THE SAME COLORS even if you draw them using SHIFT, CTRL or ALT keys. Use this extension only if you don't need this feature. I'm not affiliated in any way with chess.com. If you find any bugs or have any suggestions please let me know at [email protected]. This extension does NOT read your browser history. It requires the storage permission to save the configurations.
확장 프로그램 기본 정보
이름 | Arrow Painter for Chess.com |
ID | lbigiogpaeccogondhccbjnbiepimonm |
공식 URL | https://chromewebstore.google.com/detail/arrow-painter-for-chessco/lbigiogpaeccogondhccbjnbiepimonm |
설명 | Change the arrow colors on chess.com website. |
파일 크기 | 27.79 KB |
설치 횟수 | 466 |
현재 버전 | 0.0.0.1 |
최근 업데이트 | 2022-02-03 |
출시 날짜 | 2022-02-02 |
평점 | 2.00/5 총 2 개의 평점 |
개발자 | Luiz Costa |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Arrow Painter for Chess.com", "description": "Change the arrow colors on chess.com website.", "version": "0.0.0.1", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.chess.com\/*" ], "js": [ "arrow-painter.js" ] } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/icon16.png", "32": "\/images\/icon32.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" } }, "icons": { "16": "\/images\/icon16.png", "32": "\/images\/icon32.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" } } |