Colonist.io Counter
Keeps track of cards in the bank
Colonist.io Counter란 무엇입니까?
Colonist.io Counter은(는) austin12chen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Keeps track of cards in the bank"입니다.
확장 프로그램 스크린샷
Colonist.io Counter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Chrome extension that counts cards in the bank on colonist.io Currently, only keeps track of cards in the bank. Planned future features: counts cards in players hands, keeps track of dice rolls throughout the game, counts the total amount of cards received by each player, counts the probabilities of receiving resource X by your next turn
확장 프로그램 기본 정보
이름 | |
ID | pakngdooebgdpkjgmbckjhjaikkmedno |
공식 URL | https://chromewebstore.google.com/detail/colonistio-counter/pakngdooebgdpkjgmbckjhjaikkmedno |
설명 | Keeps track of cards in the bank |
파일 크기 | 157 KB |
설치 횟수 | 177 |
현재 버전 | 1.0 |
최근 업데이트 | 2022-02-02 |
출시 날짜 | 2022-02-01 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | austin12chen |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://www.freeprivacypolicy.com/live/897466a7-2a18-48e8-bcd9-80abfcde3bad |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Colonist.io Counter", "version": "1.0", "description": "Keeps track of cards in the bank", "action": { "default_icon": { "48": "images\/icon48.png", "64": "images\/icon64.png", "128": "images\/icon128.png" }, "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/colonist.io\/*" ], "js": [ "colonist.js", "content.js" ] } ] } |