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.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Robux To Money

قم بتنزيل ملفات الامتداد Robux To Money بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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 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"
    ]
}