Robux Worth Counter
Display how much money worth of robux you have!
Robux Worth Counter란 무엇입니까?
Robux Worth Counter은(는) JustDoom에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Display how much money worth of robux you have!"입니다.
확장 프로그램 스크린샷
Robux Worth Counter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
IMPORTANT NEWS: Currencies other than USD will not work as of now. The exchange rate API I used has been taken over by another company or made it paid to use sadly. No clue when I will update it once again. If you know of any good ones please let me know on discord JustDoom#1106 THIS IS IN DEVEX RATE NOT THE PURCHASE RATE DEVEX RATE IS $0.0035 USD PER ROBUX Want a quick easy way to find out how much money worth of robux you have? This extension will help! Features - Simple, easy settings! - Built in calculator! - Multiple currencies! - Works with group funds, gamepasses/clothing and your own balance! - Live currency rates! - And it's free! This is my first ever chrome extension and I haven't done much with JavaScript so there might be some bugs/glitches :P 1.2.3 Update Log Fixed a bug where it wouldn't calculate group funds Fixed update 1.2.1 because I forgot to replace the + symbol as well 1.2.2 Update Log Next update for the extension with have a button that takes away 30% in the calculator so you know how much you gain when someone purchases a gamepass etc 1.2.1 Update Log If you have a ROBLOX balance that displayed as, 12K or 10M, for example (anything that has a letter in it) would break when calculating the worth and display as NaN. This is now fixed but if you have 10.5M but it displays as 10M it only calculates 10M and not that 0.5M, trying to fix this.
확장 프로그램 기본 정보
이름 | Robux Worth Counter |
ID | jfpoennlpiaeplmoahaacgnknnllninp |
공식 URL | https://chromewebstore.google.com/detail/robux-worth-counter/jfpoennlpiaeplmoahaacgnknnllninp |
설명 | Display how much money worth of robux you have! |
파일 크기 | 20.11 KB |
설치 횟수 | 5,141 |
현재 버전 | 1.2.4 |
최근 업데이트 | 2023-04-25 |
출시 날짜 | 2020-10-02 |
평점 | 4.17/5 총 23 개의 평점 |
개발자 | JustDoom |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://discord.gg/ydGK5jYV6t |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Robux Worth Counter", "description": "Display how much money worth of robux you have!", "version": "1.2.4", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.roblox.com\/*" ], "js": [ "content.js" ] } ] } |