Robux Worth Counter
Display how much money worth of robux you have!
Τι είναι το Robux Worth Counter;
Το Robux Worth Counter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον JustDoom, και η κύρια λειτουργία του είναι "Display how much money worth of robux you have!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Robux Worth Counter
Λήψη αρχείων επέκτασης 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" ] } ] } |