Robux To Money

Replaces Robux value with real-world currency.

Robux To Money क्या है?

Robux To Money FrenchToast Studios द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replaces Robux value with real-world currency."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Robux To Money एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}