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文件
下载Robux Worth Counter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" ] } ] } |