Robux To Money
Replaces Robux value with real-world currency.
Что такое Robux To Money?
Robux To Money - это расширение Chrome, разработанное FrenchToast Studios, и его основная функция - "Replaces Robux value with real-world currency.".
Снимки экрана расширения
Скачать файл CRX расширения Robux To Money
Скачайте файлы расширений Robux To Money в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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/
Основная информация о расширении
Название | Robux To Money |
ID | fedpmdfkilhcadoklbcdjokkjhpnhgma |
Официальный URL | https://chromewebstore.google.com/detail/robux-to-money/fedpmdfkilhcadoklbcdjokkjhpnhgma |
Описание | Replaces Robux value with real-world currency. |
Размер файла | 69.38 KB |
Количество установок | 5,197 |
Текущая Версия | 1.5 |
Последнее Обновление | 2021-01-30 |
Дата публикации | 2020-06-07 |
Рейтинг | 2.80/5 Всего 20 оценок |
Разработчик | FrenchToast Studios |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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" ] } |