Replay Bankroll Chart
Adds a chart to the Replay Poker transactions page showing your bankroll over time
Replay Bankroll Chart란 무엇입니까?
Replay Bankroll Chart은(는) moofish에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a chart to the Replay Poker transactions page showing your bankroll over time"입니다.
확장 프로그램 스크린샷
Replay Bankroll Chart 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Plots a chart on your Replay Poker transactions page to visualize your bankroll over time Inspired by https://forums.replaypoker.com/t/bankroll-graph-and-my-brief-rpp-bio/13195/18 Please note - the first time you visit the transactions page, the extension will download all of your Replay transactions to your computer, without showing any progress indicators until it has completed. If you have a lot of transactions on Replay, this could take up to a minute to complete, but it will be much quicker on subsequent visits This extension respects your privacy, a copy of the source code is available here to manually package or review: https://gitlab.com/moofish/replay-poker-bankroll-charts
확장 프로그램 기본 정보
이름 | |
ID | lnicakbhbceneodanknoadlogjmgbmlm |
공식 URL | https://chrome.google.com/webstore/detail/replay-bankroll-chart/lnicakbhbceneodanknoadlogjmgbmlm |
설명 | Adds a chart to the Replay Poker transactions page showing your bankroll over time |
파일 크기 | 31.04 KB |
설치 횟수 | 66 |
현재 버전 | 0.1.3 |
최근 업데이트 | 2019-06-08 |
출시 날짜 | 2019-06-08 |
개발자 | moofish |
결제 유형 | free |
도움말 페이지 URL | https://forums.replaypoker.com/t/bankroll-graph-and-my-brief-rpp-bio/13195/19 |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Replay Bankroll Chart", "version": "0.1.3", "description": "Adds a chart to the Replay Poker transactions page showing your bankroll over time", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/www.replaypoker.com\/transactions" ], "js": [ "transactions.js" ] } ], "background": { "scripts": [ "open-replay-on-click.js" ] }, "permissions": [ "storage" ], "icons": { "16": "icon16x16.png", "48": "icon48x48.png", "128": "icon.png" }, "browser_action": { "default_icon": "icon48x48.png" } } |