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
官方網址 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"
    ]
}