Robux To Money

Replaces Robux value with real-world currency.

Robux To Moneyとは何ですか?

Robux To MoneyはFrenchToast Studiosによって開発されたChromeの拡張機能で、その主な機能は「Replaces Robux value with real-world currency.」です。

拡張機能のスクリーンショット

screenshot

Robux To Money拡張機能のCRXファイルをダウンロード

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 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
Eメール [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"
    ]
}