Robux To Money
Replaces Robux value with real-world currency.
Robux To Money là gì?
Robux To Money là một tiện ích mở rộng Chrome được phát triển bởi FrenchToast Studios, và tính năng chính của nó là "Replaces Robux value with real-world currency.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Robux To Money
Tải xuống các tệp mở rộng Robux To Money dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Robux to Money is a Chrome extension that aims to simplify a Roblox developer's life. It automatically converts a user's Robux value to a corresponding real-world currency value based on Jan 25, 2021 DevEx and currency conversion rates. Currently included currencies are USA (USD), Canada (CAD), United Kingdom (GBP), China (CNY), India (INR), Australia (AUD). Save yourself the hassle of converting your Robux earnings manually and download today! On Github if you would like to contribute: https://github.com/Frenchtoast0/Robux2Money/
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Robux To Money |
ID | fedpmdfkilhcadoklbcdjokkjhpnhgma |
URL Chính Thức | https://chromewebstore.google.com/detail/robux-to-money/fedpmdfkilhcadoklbcdjokkjhpnhgma |
Mô tả | Replaces Robux value with real-world currency. |
Kích Thước Tệp | 69.38 KB |
Số Lần Cài Đặt | 5,197 |
Phiên Bản Hiện Tại | 1.5 |
Cập Nhật Lần Cuối | 2021-01-30 |
Ngày Phát Hành | 2020-06-07 |
Đánh Giá | 2.80/5 Tổng số 20 Đánh Giá |
Nhà Phát Triển | FrenchToast Studios |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Robux To Money", "short_name": "Robux2Money", "description": "Replaces Robux value with real-world currency.", "version": "1.5", "incognito": "split", "author": "Frenchtoast0", "browser_action": { "default_title": "Robux2Money", "default_popup": "popup.html", "default_icon": { "19": "icons\/goldrobux_16.png", "38": "icons\/goldrobux_48.png" }, "icons": { "12": "icons\/goldrobux_12.png", "16": "icons\/goldrobux_16.png", "48": "icons\/goldrobux_48.png", "128": "icons\/goldrobux_48.png" } }, "content_scripts": [ { "matches": [ "https:\/\/www.roblox.com\/*" ], "run_at": "document_end", "js": [ "content.js" ] } ], "background": { "persistent": false, "scripts": [ "background.js" ] }, "permissions": [ "activeTab", "storage" ] } |